home *** CD-ROM | disk | FTP | other *** search
/ Kodak Picture CD: 357071 / Kodak Picture CD 357071.iso / setup / pcd / pcdhelp / pcdh1033.cab / ESS_KODAK_Picture_CD.CHM1 / ehlpdhtm.js < prev    next >
Text File  |  2004-08-02  |  125KB  |  4,229 lines

  1. // eHelp« Corporation Dynamic HTML JavaScript 
  2. // Copyright⌐ 1998-2003 eHelp« Corporation.All rights reserved.
  3. // Version=4.80
  4.  
  5. // Warning:Do not modify this file.It is generated by RoboHELP« and changes will be overwritten.
  6.  
  7. //// Segment Begin -- (JavaScript 1.0)
  8.  
  9. /// Section Begin - General and relative topics(JavaScript 1.0)
  10.  
  11. //{{HH_SYMBOL_SECTION
  12. var HH_ChmFilename = "C:\\EasyShare Aspen Windows\\Picture CD Help v6 with ES 3.4\\Picture CD Help\\PictureCD.chm";
  13. var HH_WindowName = "NewWindow";
  14. var HH_GlossaryFont = "";
  15. var HH_Glossary = "0";
  16. var HH_Avenue = "0";
  17. var HH_ActiveX = false;
  18. //}}HH_SYMBOL_SECTION
  19.  
  20. //Begin to support previous generic parameters
  21. //Get the information about the browser.
  22. var gstrBsAgent     = navigator.userAgent.toLowerCase();
  23. var gnBsVer               = parseInt(navigator.appVersion);
  24.  
  25. var gbBsOpera        = (gstrBsAgent.indexOf('opera') != -1);
  26. var gbBsKonqueror    = (gstrBsAgent.indexOf('konqueror') != -1);
  27. var gbBsSafari        = (gstrBsAgent.indexOf('safari') != -1);
  28. var gbBsIE          = (gstrBsAgent.indexOf('msie') != -1) && !gbBsOpera && !gbBsKonqueror && !gbBsSafari;
  29. var gbBsNS          = (gstrBsAgent.indexOf('mozilla') != -1) && ((gstrBsAgent.indexOf('spoofer') == -1) && (gstrBsAgent.indexOf('compatible') == -1)) && !gbBsOpera && !gbBsKonqueror && !gbBsSafari;
  30.  
  31. var gbBsMac            = (gstrBsAgent.indexOf('mac') != -1);
  32. var gbBsWindows        = ((gstrBsAgent.indexOf('win') != -1) || (gstrBsAgent.indexOf('16bit') != -1));
  33. var gbBsSunOS        = (gstrBsAgent.indexOf("sunos") != -1);
  34.  
  35. var gbBsIE3Before     = ((gbBsIE) && (gnBsVer <= 2));
  36. var gbBsNS3Before     = ((gbBsNS) && (gnBsVer <= 3));
  37.  
  38. var gbBsNS2            = ((gbBsNS) && (gnBsVer <= 2));
  39. var gbBsNS3            = ((gbBsNS) && (gnBsVer == 3));
  40. var gbBsIE300301    = ((gbBsIE) && (gnBsVer == 2) && ((gstrBsAgent.indexOf("3.00") != -1)||(gstrBsAgent.indexOf("3.0a") != -1)||(gstrBsAgent.indexOf("3.0b")!=-1)||(gstrBsAgent.indexOf("3.01")!=-1)));
  41. var gbBsIE302        = ((gbBsIE) && (gnBsVer == 2) && (gstrBsAgent.indexOf("3.02") != -1));
  42.  
  43. var gbBsNS4            = ((gbBsNS) && (gnBsVer >= 4));
  44. var gbBsNS6            = ((gbBsNS) && (gnBsVer >= 5));
  45. var    gbBsNS7            = false;
  46.  
  47. var gbBsIE4            = ((gbBsIE) && (gnBsVer >= 4));
  48. var gbBsIE5            = false;
  49. var gbBsIE55        = false;
  50.  
  51. var gbBsOpera6        = false;
  52. var gbBsOpera7        = false;
  53.  
  54. var gbBsKonqueror3    = false;
  55.  
  56.  
  57.  
  58. gbBsIE = (navigator.appName.indexOf("Microsoft") != -1) && !gbBsOpera && !gbBsKonqueror && !gbBsSafari;;
  59. if (gbBsIE)
  60. {
  61.     if (parseInt(navigator.appVersion) >= 4) {
  62.         gbBsIE4 = true;
  63.         if (gbBsIE4) {
  64.             var nPos = gstrBsAgent.indexOf("msie");
  65.             var strIEversion = gstrBsAgent.substring(nPos + 5);
  66.             var nVersion =  parseFloat(strIEversion);
  67.             if (nVersion >= 5)
  68.                 gbBsIE5 = true;
  69.             if (nVersion >= 5.5)
  70.                 gbBsIE55 = true;
  71.         }
  72.     }
  73. }
  74. if (gbBsNS6)
  75. {
  76.     var nPos=gstrBsAgent.indexOf("gecko");
  77.     if(nPos!=-1)
  78.     {
  79.         var nPos2=gstrBsAgent.indexOf("/", nPos);
  80.         if(nPos2!=-1)
  81.         {
  82.             var nVersion=parseFloat(gstrBsAgent.substring(nPos2+1));
  83.             if (nVersion>=20020823)
  84.                 gbBsNS7=true;
  85.         }
  86.     }    
  87. }
  88. if (gbBsOpera)
  89. {
  90.     var nPos = gstrBsAgent.indexOf("opera");
  91.     if(nPos!=-1)
  92.     {
  93.         var nVersion = parseFloat(gstrBsAgent.substring(nPos+6));
  94.         if (nVersion >= 6)
  95.         {
  96.             gbBsOpera6=true;
  97.             if (nVersion >=7)
  98.                 gbBsOpera7=true;    
  99.         }
  100.     }
  101. }
  102. if (gbBsKonqueror)
  103. {
  104.     var nPos = gstrBsAgent.indexOf("konqueror");
  105.     if(nPos!=-1)
  106.     {
  107.         var nVersion = parseFloat(gstrBsAgent.substring(nPos+10));
  108.         if (nVersion >= 3)
  109.         {
  110.             gbBsKonqueror3=true;
  111.         }
  112.     }
  113. }
  114.  
  115. function insertAdjacentHTML(obj, where, htmlStr)
  116. {
  117.     if (gbBsIE || gbBsOpera7)
  118.     {
  119.         obj.insertAdjacentHTML(where, htmlStr);
  120.     }
  121.     else if (gbBsNS6 || gbBsSafari)
  122.     {
  123.         var r = obj.ownerDocument.createRange();
  124.         r.setStartBefore(obj);
  125.         var    parsedHTML = r.createContextualFragment(htmlStr);
  126.         
  127.         switch (where){
  128.         case 'beforeBegin':
  129.             obj.parentNode.insertBefore(parsedHTML,obj);
  130.             break;
  131.         case 'afterBegin':
  132.             obj.insertBefore(parsedHTML,obj.firstChild);
  133.             break;
  134.         case 'beforeEnd':
  135.             obj.appendChild(parsedHTML);
  136.             break;
  137.         case 'afterEnd':
  138.             if (obj.nextSibling){
  139.             obj.parentNode.insertBefore(parsedHTML,obj.nextSibling);
  140.             } else {
  141.             obj.parentNode.appendChild(parsedHTML);
  142.             }
  143.             break;
  144.         }
  145.     }
  146. }
  147.  
  148. // Utilities functions.
  149. function BsscHasExtJs()
  150. {
  151.     if( gbBsIE3Before || gbBsNS3Before)
  152.         return false;
  153.     return true;
  154. }
  155.  
  156. // Register event handler
  157. var gBsOnLoads             = new Array();    // An array holds all the onload event handler.
  158. var gBsOnClicks         = new Array();    // An array holds all the onClick event handler.
  159. var gBsOnUnLoads         = new Array();    // An array holds all the OnUnLoad event handler.
  160. var gBsOnMouseOvers     = new Array();    // An array holds all the OnMouseOver event handler.
  161. var gBsOnMouseOuts         = new Array();    // An array holds all the OnMouseOut event handler.
  162.  
  163. var gbOrignalOnMouseDown = null;
  164.  
  165. function BsscRegisterOnLoad(funcHandler)
  166. {
  167.     var nLength = gBsOnLoads.length;
  168.     gBsOnLoads[nLength] = funcHandler;
  169. }
  170.  
  171. function BsscRegisterOnClick(funcHandler)
  172. {
  173.     var nLength = gBsOnClicks.length;
  174.     gBsOnClicks[nLength] = funcHandler;
  175. }
  176.  
  177. function BsscRegisterOnUnLoad(funcHandler)
  178. {
  179.     var nLength = gBsOnUnLoads.length;
  180.     gBsOnUnLoads[nLength] = funcHandler;
  181. }
  182.  
  183. function BsscRegisterOnMouseOver(funcHandler)
  184. {
  185.     var nLength = gBsOnMouseOvers.length;
  186.     gBsOnMouseOvers[nLength] = funcHandler;
  187. }
  188.  
  189. function BsscRegisterOnMouseOut(funcHandler)
  190. {
  191.     var nLength = gBsOnMouseOuts.length;
  192.     gBsOnMouseOuts[nLength] = funcHandler;
  193. }
  194.  
  195. function BsGeneralOnLoad()
  196. {
  197.     if (!gbBsIE4 && !gbBsNS4)
  198.         return;
  199.  
  200.     // Make everything visible in navigator
  201.     if (gbBsNS4 && !gbBsNS6) {
  202.         // Make some special effects items visible
  203.         for (var iLayer = 0; iLayer < document.layers.length; iLayer++) {
  204.             document.layers[iLayer].visibility = "show";
  205.             document.layers[iLayer].left = 0;
  206.         }
  207.     }
  208. }
  209.  
  210. // If resize the netscape browser, need to reload it.
  211. function BsReDo()
  212. {
  213.   if (innerWidth != origWidth || innerHeight != origHeight)
  214.      location.reload();
  215. }
  216. // End of the local functions.
  217.  
  218. // The following functions are used by the html files.
  219. function BSSCOnLoad()
  220. {
  221.     if( !BsscHasExtJs() )
  222.         return;
  223.     for (var nElement = gBsOnLoads.length - 1; nElement >= 0; nElement--)
  224.         gBsOnLoads[nElement]();
  225. }
  226.  
  227. function BSSCOnClick()
  228. {
  229.     if (!BsscHasExtJs()) return;
  230.         
  231.     for (var nElement = gBsOnClicks.length - 1; nElement >= 0; nElement--)
  232.         gBsOnClicks[nElement]();
  233. }
  234.  
  235. function BSSCOnUnload()
  236. {
  237.     if (!BsscHasExtJs()) return;
  238.     for (var nElement = gBsOnUnLoads.length - 1; nElement >= 0; nElement--)
  239.         gBsOnUnLoads[nElement]();
  240. }
  241.  
  242. function BSSCOnMouseOver()
  243. {
  244.     if (!BsscHasExtJs()) return;
  245.     for (var nElement = gBsOnMouseOvers.length - 1; nElement >= 0; nElement--)
  246.         gBsOnMouseOvers[nElement]();
  247. }
  248.  
  249. function BSSCOnMouseOut()
  250. {
  251.     if (!BsscHasExtJs()) return;
  252.     for (var nElement = gBsOnMouseOuts.length - 1; nElement >= 0; nElement--)
  253.     {
  254.         gBsOnMouseOuts[nElement]();
  255.     }
  256. }
  257. // End of invocation of the event handle functions.
  258.  
  259. // Add the GereralOnLoad to the onload array.
  260. if (typeof(BsscRegisterOnLoad) != "undefined")
  261. {
  262.     BsscRegisterOnLoad(BsGeneralOnLoad);
  263. }
  264. if (gbBsNS4&&!gbBsNS6) {
  265.     origWidth = innerWidth;
  266.     origHeight = innerHeight;
  267.     onresize = BsReDo;
  268. }
  269. //End to support previous generic parameters
  270.  
  271. //Begin to support previous HHActiveX invoking
  272. function BsHHActivateComponents()
  273. {
  274.     if( HH_ActiveX && (HH_ChmFilename != "") && ((self == top) || (self == top.frames[0])))
  275.     {
  276.         var objBody = getElementsByTag(document,"BODY")[0];
  277.         if( typeof(objBody) == "object" )
  278.         {
  279.             insertAdjacentHTML(objBody, "beforeEnd", '<OBJECT ID="HHComponentActivator" CLASSID="CLSID:399CB6C4-7312-11D2-B4D9-00105A0422DF" width=0 height=0></OBJECT>');
  280.             if (HHComponentActivator.object)
  281.                 HHComponentActivator.Activate(HH_ChmFilename, HH_WindowName, HH_GlossaryFont, HH_Glossary, HH_Avenue);
  282.         }
  283.     }
  284. }
  285.  
  286. function BsHHActivXOnLoad()
  287. {    
  288.     if( gbBsIE4 )
  289.         BsHHActivateComponents(); 
  290. }
  291.  
  292. if( typeof(BsscRegisterOnLoad) != "undefined" )
  293. {
  294.     BsscRegisterOnLoad(BsHHActivXOnLoad);
  295. }
  296. //End to support previous HHActiveX invoking
  297.  
  298. //Begin to support previous relative topics
  299. //If webHelp needs Related Topics DHTMLcode, it's supposed to add it here
  300. var gbPopupMenuTimeoutExpired = false;
  301. var gbInPopupMenu = false;
  302. var gbPopupMenuTopicList = null;
  303. var gOlddocumentClick = null;
  304.  
  305. //////////////////////////////////////////////////////////////////////////////////////////
  306. //
  307. // Popup Menu code
  308. //
  309. //////////////////////////////////////////////////////////////////////////////////////////
  310.  
  311. var g_bIsPopupMenuInit = false;
  312. function _WritePopupMenuLayer()
  313. {
  314.     if (!g_bIsPopupMenuInit)
  315.         {
  316.       if (gbBsNS4&&!gbBsNS6) {
  317. //Do not try to write ininle styles for NS!  NS can not handle it and will not stop downloading the html page...
  318.            document.write("<DIV CLASS='WebHelpPopupMenu' ID='PopupMenu'></DIV>");
  319.       } else{
  320.       document.write("<DIV ID='PopupMenu' STYLE='position:absolute; left:0px; top:0px; z-index:4; visibility:hidden;'></DIV>");
  321.       if (!(gbBsNS4&&!gbBsNS6)) {
  322.         document.write("<STYLE TYPE='text/css'>");
  323.         if (gbBsMac&&gbBsIE4) {
  324.             document.write(".PopupOver {font-family:'Arial'; color:white; background:navy; font-size:10pt; font-style:normal;font-weight:normal;text-decoration:none;}");
  325.             document.write(".PopupNotOver {font-family:'Arial'; color:black; background:#c0c0c0; font-size:10pt; font-style:normal;font-weight:normal;text-decoration:none;}");
  326.         } else {
  327.             document.write(".PopupOver {font-family:'Arial'; color:white; background:navy; font-size:8pt; font-style:normal;font-weight:normal;text-decoration:none;}");
  328.             document.write(".PopupNotOver {font-family:'Arial'; color:black; background:#c0c0c0; font-size:8pt; font-style:normal;font-weight:normal;text-decoration:none;}");
  329.         }
  330.         document.write("</STYLE>");
  331.        }
  332.           }
  333.       g_bIsPopupMenuInit = true;
  334.     }
  335. }
  336.  
  337. //Seek for the bsscright frame 
  338. function _SeekFrameByName( cRoot, strName )
  339. {
  340.     if( cRoot == null )    return null;
  341.     if( cRoot.frames == null )    return null;
  342.     if( cRoot.frames[strName] != null )    return cRoot.frames[strName];
  343.     for (var i=0; i<cRoot.frames.length; i++)
  344.     {
  345.         var cObj = null;
  346.         if (!gbBsNS6) 
  347.             cObj = _SeekFrameByName( cRoot.frames(i).document, strName );
  348.         else
  349.             cObj = _SeekFrameByName( cRoot.frames[i], strName );
  350.         if( cObj != null )        return cObj;
  351.     };
  352.     return null;
  353. }
  354. function _GetFrameByName( cRoot, strName )
  355. {
  356.     if( cRoot == null )    return null;
  357.     var cRet = _SeekFrameByName(cRoot, strName);
  358.     if( cRet != null )    return cRet;
  359.     if (cRoot.parent != cRoot)
  360.         return _GetFrameByName( cRoot.parent, strName );
  361.     else
  362.         return null;
  363. }
  364.  
  365. var gfn_arguments = null;
  366. function _PopupMenu_Invoke(fn_arguments)
  367. {
  368.     gfn_arguments = fn_arguments;
  369.     if (gbBsOpera6&&gbBsMac)
  370.     {
  371.         var wndOldPopupLinks= window.open(document.location.href, "popuplinks");
  372.         wndOldPopupLinks.close();
  373.         setTimeout("_PopupMenu_Invoke_2();",100);
  374.     }
  375.     else
  376.     {
  377.         _PopupMenu_Invoke_2();
  378.     }
  379. }
  380.  
  381. function _PopupMenu_Invoke_2()
  382. {
  383.     var fn_arguments = gfn_arguments;
  384.     gfn_arguments = null;
  385.     
  386.     // Make sure we have reasonable arguments
  387.     var argLen = fn_arguments.length;
  388.     if (argLen < 3) {
  389.         return false;
  390.     }
  391.  
  392.     // Check to see if we only have one target
  393.     var strTarget = "";
  394.     var targetDoc = null;
  395.     if (fn_arguments[1] == '') {
  396.         if (BSSCPopup_IsPopup()) {
  397.             targetDoc = parent;
  398.             strTarget = "TARGET= _parent";
  399.         }
  400.         else
  401.             targetDoc = window.document;
  402.     } else {
  403.         targetDoc = _GetFrameByName( parent, fn_arguments[1] );
  404.  
  405.         strTarget = "TARGET='" + fn_arguments[1] + "'";
  406.     }
  407.  
  408.     if ((!gbBsIE4 && !gbBsNS4 && !gbBsOpera7 && !gbBsKonqueror3 &&!gbBsSafari) || ((gbBsMac) && (gbBsIE4) && (window.event.srcElement.tagName == "AREA"))) {
  409.     
  410.         var argLen     = fn_arguments.length;
  411.  
  412.         // Create the window that the hyperlinks will go into
  413.         var nHeight = argLen * 15;
  414.         var nWidth = 400;
  415.         var strParam = "titlebar=no,toolbar=no,status=no,location=no,menubar=no,resizable=yes,scrollbars=auto";
  416.         strParam += ",height=" + nHeight + ",width=200";
  417.         strParam += ",resizable";
  418.  
  419.         var wndTemp=null;
  420.         // Create a temporary window first to ensure the real popup comes up on top
  421.         if (!gbBsOpera)
  422.             wndTemp = window.open("", "temp", strParam);
  423.  
  424.         // Create the real popup window
  425.         var wndPopupLinks=null;
  426.         if (gbBsOpera&&gbBsMac)
  427.         {
  428.             wndTemp = window.open(document.location.href, "temp", strParam);
  429.             wndPopupLinks= window.open(document.location.href, "popuplinks", strParam);
  430.         }
  431.         else
  432.             wndPopupLinks= window.open("", "popuplinks", strParam);
  433.         wndPopupLinks.document.open("text/html");
  434.  
  435.         // Close the temporary
  436.         if (wndTemp)
  437.             wndTemp.close();
  438.  
  439.         var sHTML="<html><head></head>";
  440.         sHTML+="<body onBlur=\'self.focus();\'>";
  441.         var strParaLine = "";
  442.         for (var i = 0; i < (argLen - 2) / 2; i++) {
  443.             strParaLine = "";
  444.             strParaLine += "<a href=\"javascript:";
  445.             if (gbBsIE) {
  446.                 strParaLine += "onBlur=null; ";
  447.             }
  448.             strParaLine += "opener.location=\'";
  449.             strParaLine += fn_arguments[2 * i + 3];
  450.             strParaLine += "\';close();\"";
  451.             strParaLine += strTarget;
  452.  
  453.             strParaLine += ">";
  454.             strParaLine += fn_arguments[2 * i + 2];
  455.             strParaLine += "</a>";
  456.             strParaLine += "<br>";
  457.             sHTML+=strParaLine;
  458.         }
  459.         sHTML+="</body></html>";
  460.         wndPopupLinks.document.write(sHTML);
  461.         wndPopupLinks.document.close();
  462.         window.gbInPopupMenu = true;
  463.         if (!gbBsIE) {
  464.             wndPopupLinks.focus();
  465.         }
  466.         return false;
  467.     }
  468.  
  469.     if (((argLen < 5) && ((isNaN(fn_arguments[2])) || (gbPopupMenuTopicList == null))) ||
  470.         ((argLen < 4) && ((!isNaN(fn_arguments[2])) && (gbPopupMenuTopicList != null)))) {
  471.         // Get the place that we will be putting the topic into
  472.         var strURL = "";
  473.         if (isNaN(fn_arguments[2]) ||  (gbPopupMenuTopicList == null)) {
  474.             strURL = fn_arguments[3];
  475.         }
  476.         else     {
  477.             strURL = gbPopupMenuTopicList[fn_arguments[2]].strURL;
  478.         }
  479.  
  480.         if (targetDoc != null) {
  481.             targetDoc.location.href = strURL;
  482.         }
  483.         else {
  484.             if (fn_arguments[1] != null && typeof(fn_arguments[1]) != "undefined")
  485.                 window.open(strURL, fn_arguments[1]);
  486.             else
  487.                 window.open(strURL);
  488.         }        
  489.         window.gbInPopupMenu = true;
  490.         return false;
  491.     }
  492.     
  493.     var strMenu = "";
  494.     if (gbBsNS4&&!gbBsNS6) {
  495.         strMenu = '<TABLE BORDER="1" CELLSPACING=0 CELLPADDING=3 BGCOLOR="#c0c0c0">';
  496.     } else {
  497.         strMenu = '<TABLE STYLE="border:2px outset white;" CELLSPACING=0';
  498.         if (gbBsMac) {
  499.             strMenu += ' CELLPADDING=4';
  500.         } else {
  501.             strMenu += ' CELLPADDING=2';
  502.         }    
  503.         strMenu += ' BGCOLOR=#c0c0c0>';
  504.     }
  505.     // Add each of the items
  506.     var i = 2;
  507.     while (i <= argLen - 1) {
  508.         strMenu += '<TR><TD><NOBR>'
  509.         // If the destination is a number then look it up in the topic list
  510.         if (isNaN(fn_arguments[i]) ||  (gbPopupMenuTopicList == null)) {
  511.             strMenu += '<DIV STYLE="padding-left:3pt; padding-right:3pt;"><A HREF="' + fn_arguments[i + 1] + '"' + strTarget;
  512.         } else {
  513.             strMenu += '<DIV STYLE="padding-left:3pt; padding-right:3pt;"><A HREF="' + gbPopupMenuTopicList[fn_arguments[i]].strURL + '"' + strTarget;
  514.         }
  515.         strMenu += ' onclick="PopupMenu_HandleClick(event);"';
  516.         strMenu += ' onmouseover="PopupMenu_Over(event);"';
  517.         strMenu += ' onmouseout="PopupMenu_Out(event);"';
  518.         strMenu += '>';
  519.         if (isNaN(fn_arguments[i]) || (gbPopupMenuTopicList == null)) {
  520.             strMenu += '<SPAN CLASS="PopupNotOver">' + fn_arguments[i] + '</SPAN>';
  521.         } else {
  522.             strMenu += '<SPAN CLASS="PopupNotOver">' + gbPopupMenuTopicList[fn_arguments[i]].strTitle + '</SPAN>';
  523.         }
  524.         strMenu += '</A></DIV></NOBR></TD></TR>';
  525.  
  526.         if (isNaN(fn_arguments[i]) || (gbPopupMenuTopicList == null)) {
  527.             i += 2;
  528.         } else {
  529.             i += 1;
  530.         }
  531.     }
  532.     strMenu += "</TABLE>";
  533.  
  534.     if (gbBsMac) {
  535.     // totally hack. because ie5 in mac need something. </TABLE> is one of them. mac is mad.
  536.         strMenu +="<TABLE></TABLE>";
  537.     }
  538.  
  539.     var layerPopup = null;
  540.     var stylePopup = null;
  541.     var nEventX = 0;
  542.     var nEventY = 0;
  543.     var nWindowWidth = 0;
  544.     if (gbBsIE4 || gbBsOpera7) {
  545.  
  546.         layerPopup = getElement("PopupMenu");
  547.         layerPopup.innerHTML = strMenu;
  548.         stylePopup = layerPopup.style;
  549.  
  550.         _BSPSGetClientSize();
  551.  
  552.         // Get the position of the item causing the event (relative to its parent)
  553.         nEventX = window.event.clientX;
  554.         nEventY = window.event.clientY;
  555.  
  556.         if (nEventY + layerPopup.scrollHeight + 10 < gBsClientHeight) {
  557.             nEventY += document.body.scrollTop + 10;
  558.         } else {
  559.             nEventY = (document.body.scrollTop + gBsClientHeight) - layerPopup.scrollHeight - 20;
  560.         }
  561.         stylePopup.top = nEventY;
  562.         
  563.         var nPopupWidth = layerPopup.scrollWidth;
  564.         if (gbBsMac) {
  565.             nPopupWidth = 80; // we have no idea how to get the dynamic width of the popup.
  566.         }
  567.         if (nEventX + nPopupWidth + 20 > gBsClientWidth) {
  568.             if (gBsClientWidth - nPopupWidth < 5) {
  569.                 stylePopup.left = 5;
  570.             } else {
  571.                 stylePopup.left = gBsClientWidth - nPopupWidth - 5;
  572.             }
  573.         } else {
  574.             stylePopup.left = nEventX + document.body.scrollLeft + 20;
  575.         }
  576.  
  577.         stylePopup.visibility = "visible";
  578.         if (!gOlddocumentClick && document.onclick)
  579.             gOlddocumentClick = document.onclick;
  580.         document.onclick = PopupMenu_HandleClick;
  581.  
  582.     } else if (gbBsNS6 || gbBsKonqueror3||gbBsSafari) {
  583.         layerPopup = getElement("PopupMenu");
  584.         layerPopup.style.visibility = "hidden";
  585.     
  586.         if (gbBsNS6)
  587.         {
  588.             var e = fn_arguments[0];
  589.             nEventX = e.pageX;
  590.             nEventY = e.pageY;
  591.         }
  592.         else
  593.         {
  594.             nEventX = window.event.clientX;
  595.             nEventY = window.event.clientY;
  596.         }
  597.         _BSPSGetClientSize();
  598.         layerPopup.innerHTML = strMenu;
  599.  
  600.         if (nEventY + layerPopup.offsetHeight + 20  <  window.pageYOffset + gBsClientHeight) {
  601.             nEventY += 20;
  602.         } else {
  603.             nEventY = gBsClientHeight + window.pageYOffset - layerPopup.offsetHeight - 20;
  604.         }
  605.  
  606.         if (nEventX + layerPopup.offsetWidth + 20 > gBsClientWidth + window.pageXOffset) {
  607.             if (gBsClientWidth + window.pageXOffset - layerPopup.offsetWidth < 20) {
  608.                 nEventX = 5;
  609.             } else {
  610.                 nEventX = gBsClientWidth + window.pageXOffset - layerPopup.offsetWidth - 20;
  611.             }
  612.         } else {
  613.             nEventX += 20;
  614.         }
  615.         layerPopup.style.top = nEventY;
  616.         layerPopup.style.left = nEventX;
  617.         // set again to avoid the stupid frash in netscape 6.
  618.         layerPopup.innerHTML = strMenu;
  619.         layerPopup.style.visibility = "visible";
  620.         //window.captureEvents(Event.MOUSEDOWN);
  621.         if (!gOlddocumentClick && document.onclick)
  622.             gOlddocumentClick = document.onclick;
  623.         window.onclick = PopupMenu_HandleClick;
  624.     }
  625.     else if (gbBsNS4) {
  626.         layerPopup = document.layers.PopupMenu;
  627.         layerPopup.visibility = "hide";
  628.         stylePopup = layerPopup.document;
  629.         stylePopup.write(strMenu);
  630.         stylePopup.close();
  631.         var e = fn_arguments[0];
  632.         nEventX = e.pageX;
  633.         nEventY = e.pageY;
  634.         _BSPSGetClientSize();
  635.         if (nEventY + layerPopup.clip.height + 20 < window.pageYOffset + gBsClientHeight) {
  636.             nEventY += 20;
  637.         } else {
  638.             nEventY = gBsClientHeight + window.pageYOffset- layerPopup.clip.height - 20;
  639.         }
  640.         layerPopup.top = nEventY;
  641.  
  642.         if (nEventX + layerPopup.clip.width + 20 > gBsClientWidth + window.pageXOffset) {
  643.             if (gBsClientWidth + window.pageXOffset - layerPopup.clip.width < 20) {
  644.                 nEventX = 5;
  645.             } else {
  646.                 nEventX = gBsClientWidth + window.pageXOffset - layerPopup.clip.width - 20;
  647.             }
  648.         } else {
  649.             nEventX += 20;
  650.         }
  651.  
  652.         layerPopup.left = nEventX;
  653.  
  654.         layerPopup.visibility = "show";
  655.  
  656.         window.captureEvents(Event.MOUSEDOWN);
  657.         if (!gOlddocumentClick && document.onmousedown)
  658.             gOlddocumentClick = document.onmousedown;
  659.         window.onmousedown = PopupMenu_HandleClick;
  660.     }
  661.  
  662.     window.gbInPopupMenu = true;
  663.     window.gbPopupMenuTimeoutExpired = false;
  664.     setTimeout("PopupMenu_Timeout();", 100);
  665.     return false;
  666. }
  667.  
  668. function PopupMenu_Timeout()
  669. {
  670.     window.gbPopupMenuTimeoutExpired = true;
  671. }
  672.  
  673. function PopupMenu_Over(e)
  674. {
  675.     if (gbBsIE4||gbBsOpera7)
  676.         e.srcElement.className = "PopupOver";
  677.     else if (gbBsNS6)
  678.         e.target.parentNode.className = "PopupOver";
  679.     return;
  680. }
  681.  
  682. function PopupMenu_Out(e)
  683. {
  684.     if (gbBsIE4||gbBsOpera7)
  685.         e.srcElement.className = "PopupNotOver";
  686.     else if (gbBsNS6)
  687.         e.target.parentNode.className = "PopupNotOver";
  688.     return;
  689. }
  690.  
  691. function PopupMenu_HandleClick(e)
  692. {
  693.     if (window.gbPopupMenuTimeoutExpired) {
  694.         window.gbInPopupMenu = false;
  695.         if (gbBsNS4 && !gbBsNS6) {
  696.             window.releaseEvents(Event.MOUSEDOWN);
  697.         }
  698.  
  699.         var layerPopup = null;
  700.         if (gbBsNS4&&!gbBsNS6) {
  701.             layerPopup = document.layers.PopupMenu;
  702.             layerPopup.visibility = "hide";
  703.         } else {
  704.             layerPopup = getElement("PopupMenu");
  705.             layerPopup.style.visibility = "hidden";
  706.         }
  707.     
  708.         if (gOlddocumentClick)
  709.         {
  710.             if (gbBsNS4 && !gbBsNS6)
  711.                 document.onmousedown = gOlddocumentClick;
  712.             else
  713.                 document.onclick = gOlddocumentClick;
  714.         }
  715.     }
  716.     return;
  717. }
  718.  
  719. function BSSCPopup_ClickMac()
  720. {
  721.     if ((!DHTMLPopupSupport()) && (gbBsIE4 || gbBsOpera7))
  722.     {    
  723.         var bClickOnAnchor = false;
  724.         var el;
  725.         if ((window.event != null) &&
  726.             (window.event.srcElement != null))
  727.         {
  728.             el = window.event.srcElement;
  729.             while (el != null)
  730.             {
  731.                 if ((el.tagName == "A") || (el.tagName == "AREA"))     {
  732.                     bClickOnAnchor = true;
  733.                     break;
  734.                 }
  735.                 if (el.tagName == "BODY") {
  736.                     break;
  737.                 }
  738.                 el = getParentNode(el);
  739.             }
  740.         }
  741.         if (BSSCPopup_IsPopup())
  742.         {
  743.             if (!bClickOnAnchor) {
  744.                 parent.window.gPopupWindow = null;
  745.                 self.close();
  746.             }
  747.         }
  748.         else
  749.         {
  750.             bClosePopupWindow = true;
  751.             if ((bClickOnAnchor) &&
  752.                 (el.href) &&
  753.                 ((el.href.indexOf("javascript:BSSCPopup") != -1) || (el.href.indexOf("javascript:null") != -1) || (el.href.indexOf("javascript:void(0)") != -1)))
  754.             {
  755.                 bClosePopupWindow = false;
  756.             }
  757.             if (bClosePopupWindow)
  758.             {
  759.                 if (window.gPopupWindow != null && !window.gPopupWindow.closed )
  760.                 {
  761.                     window.gPopupWindow.close();
  762.                 }
  763.             }
  764.         }
  765.     }
  766. }
  767.  
  768. function BsPopupOnClick()
  769. {
  770.     if (!gbBsIE4 && !gbBsOpera7)
  771.         return;
  772.  
  773.     BSSCPopup_ClickMac();
  774. }
  775.  
  776. function _BSSCOnError(message)
  777. {
  778.     if(-1 != message.indexOf("denied") 
  779.         || -1 != message.indexOf("Object required"))
  780.      return true;
  781. }
  782.  
  783. //End to support previous relative topics
  784.  
  785. /// Section End - General and relative topics (JavaScript 1.0)
  786.  
  787. /// Section Begin  - Popup (JavaScript 1.0)
  788. //Begin to support previous popup functions
  789.  
  790. //variables used to isolate the browser type
  791. var gBsStyVisShow    = null;
  792. var gBsStyVisHide    = null;
  793. var gBsClientWidth    = 640;
  794. var gBsClientHeight = 480;
  795.  
  796. // here is the varible for judge popup windows size. these parameter is for IE5.0, it may need adjust for others.
  797. var gBRateH_W        = 0.618; // 1.618 Golden cut.
  798. var gBMaxXOfParent    = 0.8; 
  799. var gBMaxYOfParent    = 0.8;
  800. var gBscrollHeight   = 16;
  801. var gBscrollWidth   =  16;
  802. var gBpermitXDelta    = 3;
  803. var gBpermitYDelta    = 3;
  804.  
  805.  
  806. var arrayPopupURL = new Array();
  807. var arrayAbsPopupURL = new Array();
  808.  
  809. var arrayDirty = new Array();
  810.  
  811. function setAbsPopupURL(nIndex, strURL)
  812. {
  813.     arrayAbsPopupURL[nIndex] = strURL;
  814. }
  815.  
  816. function getAbsPopupURL(nIndex)
  817. {
  818.     if (nIndex == -1 || arrayAbsPopupURL.length <= nIndex) return null;
  819.     else 
  820.         return arrayAbsPopupURL[nIndex];
  821. }
  822.  
  823. function getPopupURL(nIndex)
  824. {
  825.     if (nIndex == -1 || arrayPopupURL.length <= nIndex) return null;
  826.     else 
  827.         return arrayPopupURL[nIndex];
  828. }
  829.  
  830. function getPopupID(nIndex)
  831. {
  832.     return gstrPopupID + nIndex;
  833. }
  834.  
  835. function getPopupShadowID(nIndex)
  836. {
  837.     return gstrPopupShadowID + nIndex;
  838. }
  839.  
  840. function getPopupTopicID(nIndex)
  841. {
  842.     return gstrPopupTopicID + nIndex;
  843. }
  844.  
  845. function getPopupIFrameID(nIndex)
  846. {
  847.     return gstrPopupIFrameID + nIndex;
  848. }
  849.  
  850. function getPopupIFrameName(nIndex)
  851. {
  852.     return gstrPopupIFrameName + nIndex;
  853. }
  854.  
  855.  
  856. function getPopupTopicStyle(nIndex)
  857. {
  858.     return getElement(getPopupTopicID(nIndex)).style;
  859. }
  860.  
  861. function getPopupShadowStyle(nIndex)
  862. {
  863.     return getElement(getPopupShadowID(nIndex)).style;
  864. }
  865.  
  866. function getPopupIFrame(nIndex)
  867. {
  868.     if (gbBsNS6)
  869.         return eval("window.frames['" + getPopupIFrameName(nIndex) + "']");
  870.     else
  871.         return eval("document.frames['" + getPopupIFrameName(nIndex) + "']");
  872. }
  873.  
  874. function getPopupDivStyle(nIndex)
  875. {
  876.     return getElement(getPopupID(nIndex)).style;
  877. }
  878.  
  879. function getPopupIFrameStyle(nIndex)
  880. {
  881.     return getElement(getPopupIFrameID(nIndex)).style;
  882. }
  883.  
  884.  
  885. function findDiv(strURL)
  886. {
  887.     for (var i = 0; i < arrayPopupURL.length; i ++ ) {
  888.         if (arrayPopupURL[i] == strURL) {
  889.             return i;
  890.         }
  891.     }
  892.     return -1;
  893. }
  894.  
  895. var gnToken = -1;
  896. function takeToken()
  897. {
  898.     gnToken ++;
  899.     if (gnToken > 10000) gnToken = 0;
  900.     return gnToken;
  901. }
  902.  
  903. function IsValidToken(nToken)
  904. {
  905.     return (gnToken == nToken);
  906. }
  907.  
  908. function addDiv(strURL)
  909. {
  910.     for (var i = 0; i < arrayPopupURL.length; i ++) {
  911.         if (arrayPopupURL[i] == null) {
  912.             arrayPopupURL[i] = strURL;
  913.             return i;
  914.         }
  915.     }    
  916.     arrayPopupURL[i] = strURL;
  917.     arrayDirty[i] = true;
  918.     return i;
  919. }
  920.  
  921. function setDirty()
  922. {
  923.     for (var i = 0; i < arrayPopupURL.length; i ++ )
  924.         arrayDirty[i] = true;
  925. }
  926.  
  927. function IsDirty(nIndex)
  928. {
  929.     if (nIndex == -1)
  930.         return true;
  931.     else 
  932.         if (arrayDirty.length > nIndex) 
  933.             return arrayDirty[nIndex];
  934.         else
  935.             return true;
  936. }
  937.  
  938. function hideAll()
  939. {
  940.     for (var i = 0; i < arrayPopupURL.length; i ++ )
  941.     {
  942.         getPopupDivStyle(i).visibility = gBsStyVisHide;
  943.         getPopupIFrameStyle(i).visibility = gBsStyVisHide;
  944.     }
  945. }
  946.  
  947. function getCurrentPopupIFrame()
  948. {
  949.     for (var i = 0; i < arrayPopupURL.length; i ++)
  950.         if (getPopupDivStyle(i).visibility == gBsStyVisShow)
  951.             return getPopupIFrame(i);
  952.     return null;
  953. }
  954.  
  955. function setClear(nIndex)
  956. {
  957.     if (nIndex != -1)
  958.         arrayDirty[nIndex] = false;
  959. }
  960.  
  961. function _BSSCCreatePopupDiv(strURL)
  962. {
  963.     var nIndex = findDiv(strURL);
  964.     if (nIndex == -1 ) {
  965.         nIndex = addDiv(strURL);
  966.         BsPopup_CreateDiv(nIndex);
  967.     }
  968.     else {
  969.         if (IsDirty(nIndex)) {
  970.             if("object" == typeof(getPopupIFrame(nIndex).document))
  971.                 getPopupIFrame(nIndex).document.location.href = strURL;
  972.         }
  973.     }
  974.     return nIndex;
  975. }
  976.  
  977. //Here is the browser type 
  978. function _BSPSGetBrowserInfo()
  979. {
  980.     if (gbBsNS4&&!gbBsNS6)
  981.     {
  982.         gBsStyVisShow    = "show";
  983.         gBsStyVisHide    = "hide";
  984.     }
  985.     else
  986.     {
  987.         gBsStyVisShow    = "visible";
  988.         gBsStyVisHide    = "hidden";
  989.     }
  990. }
  991.  
  992. _BSPSGetBrowserInfo();
  993.  
  994. //Get client size info
  995. function _BSPSGetClientSize()
  996. {
  997.     if (gbBsNS4||gbBsKonqueror3||gbBsSafari)
  998.     {
  999.         gBsClientWidth    = innerWidth;
  1000.         gBsClientHeight = innerHeight;
  1001.     }
  1002.     else if (gbBsIE4 || gbBsOpera7)
  1003.     {
  1004.         gBsClientWidth    = document.body.clientWidth;
  1005.         gBsClientHeight = document.body.clientHeight;
  1006.     }
  1007. }
  1008.  
  1009. var gstrPopupID = 'BSSCPopup';
  1010. var gstrPopupShadowID = 'BSSCPopupShadow';
  1011. var gstrPopupTopicID = 'BSSCPopupTopic';
  1012. var gstrPopupIFrameID = 'BSSCPopupIFrame';
  1013. var gstrPopupIFrameName = 'BSSCPopupIFrameName';
  1014.  
  1015. var gstrPopupSecondWindowName = 'BSSCPopup';
  1016.  
  1017. var gPopupWindow = null;
  1018. var gnPopupClickX = 0;
  1019. var gnPopupClickY = 0;
  1020.  
  1021. var gnPopupScreenClickX = 0;
  1022. var gnPopupScreenClickY = 0;
  1023.  
  1024. var gbPopupTimeoutExpired = false;
  1025.  
  1026. function DHTMLPopupSupport()
  1027. {
  1028.     if (((gbBsIE4) && (!gbBsMac))||gbBsOpera7|| gbBsNS7) {
  1029.         return true;
  1030.     }
  1031.     return false;
  1032. }
  1033.  
  1034. function BSSCPopup_IsPopup()
  1035. {
  1036.     if (DHTMLPopupSupport() && (this.name.indexOf(gstrPopupIFrameName) != -1)) {
  1037.         return true;
  1038.     } else if ((gbBsNS4 || gbBsIE4 || gbBsOpera7) && (this.name.indexOf(gstrPopupID) != -1)) {
  1039.         return true;
  1040.     } else {
  1041.         return false;
  1042.     }
  1043. }
  1044.  
  1045. // If there is a hyperlink in a popup window, display the hyperlink in
  1046. // the original window. (bsscright)
  1047. if (BSSCPopup_IsPopup() && !gbBsIE4 && !gbBsOpera7) {
  1048.     document.write("<base target=\"bsscright\">");
  1049. }
  1050.  
  1051. // Local functions.
  1052. function BsPopup_CreateDiv(nIndex)
  1053. {
  1054.     if(!DHTMLPopupSupport())
  1055.         return;
  1056.     // DO NOT SET Width and height for the div, otherwize it will make IE4 popup do not work when view the topic alone.
  1057.     var strPopupDiv = "<DIV ID='" + getPopupID(nIndex) + "' STYLE='position:absolute; top:-100; left:0; z-index:600; visibility:hidden;'>";
  1058.     strPopupDiv += "<DIV ID='" + getPopupShadowID(nIndex) + "' STYLE=\"position:absolute;top:0; left:0;  background-color:#C0C0C0;\"></DIV>";
  1059.     strPopupDiv += "<DIV ID='" + getPopupTopicID(nIndex) + "' STYLE=\"position:absolute;top:0; left:0;  background-color:#FFFFFF;border:1px #000000 outset;\">";
  1060.     strPopupDiv += "<IFRAME title=\"Popup Window\" ID='" + getPopupIFrameID(nIndex) + "' name='" + getPopupIFrameName(nIndex) + "' src = '" + getPopupURL(nIndex) + "' frameborder=0 scrolling=auto></IFRAME>";
  1061.     strPopupDiv += "</DIV></DIV>";
  1062.  
  1063.     var objBody = getElementsByTag(document, "BODY")[0];
  1064.     if( typeof(objBody) != "object" )
  1065.         return;
  1066.  
  1067.     insertAdjacentHTML(objBody, "beforeEnd", strPopupDiv);
  1068. }
  1069.  
  1070. function handleLoadNS()
  1071. {
  1072.     if (this.id)
  1073.     {
  1074.         var nIndex = parseInt(this.id.substring(gstrPopupIFrameID.length));
  1075.         BSSCPopup_PostWork(nIndex);
  1076.     }
  1077. }
  1078.  
  1079. function BSSCPopup_PostWork(nIndex)
  1080. {
  1081.     getPopupDivStyle(nIndex).visibility = gBsStyVisShow;
  1082.     getPopupIFrameStyle(nIndex).visibility =gBsStyVisShow;
  1083.  
  1084.     setClear(nIndex);
  1085.     window.gbPopupTimeoutExpired = true;
  1086.  
  1087.     BSSCPopup_ChangeTargettoParent(getPopupIFrame(nIndex).document);
  1088.     if (gbBsNS6)
  1089.         getPopupIFrame(nIndex).document.body.addEventListener("click",BSSCPopupClicked,false);
  1090.     else
  1091.         getPopupIFrame(nIndex).document.body.onclick = BSSCPopupClicked;
  1092.  
  1093.     if (!gbOrignalOnMouseDown && document.onmousedown)
  1094.         gbOrignalOnMouseDown = document.onmousedown;
  1095.  
  1096.     if (gbBsNS6)
  1097.         document.addEventListener("mousedown", BSSCPopupParentClicked,false);
  1098.     else
  1099.         document.onmousedown = BSSCPopupParentClicked;
  1100. }
  1101.  
  1102. function BSSCPopup_Timeout(nIndex, nToken)
  1103. {
  1104.     if (!IsValidToken(nToken)) return;
  1105.  
  1106.     if (gbBsNS6||((getPopupIFrame(nIndex).document.readyState == "complete") &&
  1107.         (getPopupIFrame(nIndex).document.body != null))) {
  1108.         BSSCPopup_PostWork(nIndex);
  1109.     } else {
  1110.         setTimeout("BSSCPopup_Timeout(" + nIndex + "," + nToken + ")", 100);
  1111.     }
  1112. }
  1113.  
  1114. // VH 08/10/00 
  1115. // do not change target to parent if the href is using javascript
  1116. function BSSCPopup_ChangeTargettoParent(tagsObject)
  1117. {
  1118.     var collA = getElementsByTag(tagsObject, "A");
  1119.     BSSCPopup_ChangeTargettoParent2(collA);
  1120.  
  1121.     var collIMG = getElementsByTag(tagsObject,"IMG");
  1122.     BSSCPopup_ChangeTargettoParent2(collIMG);
  1123. }
  1124.  
  1125. function BSSCPopup_ChangeTargettoParent2(colls)
  1126. {
  1127.     if (colls != null)  {
  1128.         for (var j = 0; j < colls.length; j ++ )
  1129.         {
  1130.             var strtemp = colls[j].href;
  1131.             if (strtemp)
  1132.             {
  1133.                 strtemp = strtemp.toLowerCase();
  1134.                 if (strtemp.indexOf("javascript:") == -1)
  1135.                 if (colls[j].target == "")
  1136.                     colls[j].target = "_parent";
  1137.             }
  1138.         }
  1139.     }
  1140. }
  1141.  
  1142. function BSPSPopupTopicWinHelp(strURL)
  1143. {
  1144.     _BSSCPopup(strURL);
  1145.     return;
  1146. }
  1147.  
  1148. function _BSSCPopup(strURL, width, height)
  1149. {
  1150.     var cuswidth = 0;
  1151.     var cusheight = 0;
  1152.     if ("undefined" != typeof(width) && "undefined" != typeof(height)) {
  1153.         cuswidth = width;
  1154.         cusheight= height;
  1155.     }
  1156.     
  1157.     if (DHTMLPopupSupport()) {
  1158.         var nToken = takeToken(); // take  token first.
  1159.         var nIndex = _BSSCCreatePopupDiv(strURL);
  1160.         window.gbPopupTimeoutExpired = false;
  1161.         var ntWidth = gBsClientWidth;
  1162.         var ntHeight = gBsClientHeight;
  1163.         _BSPSGetClientSize();
  1164.         if (ntWidth != gBsClientWidth || ntHeight != gBsClientHeight) {
  1165.             setDirty();
  1166.         }
  1167.  
  1168.         if (IsDirty(nIndex)) {
  1169.             if (gbBsMac) {
  1170.                 setTimeout("BSSCPopup_AfterLoad(" + nIndex + "," + nToken + "," + cuswidth + "," + cusheight  +")", 400);
  1171.             } else {
  1172.                 setTimeout("BSSCPopup_AfterLoad(" + nIndex + "," + nToken + "," + cuswidth + "," + cusheight + ")", 100);
  1173.             }
  1174.         }
  1175.         else {
  1176.             MoveDivAndShow(nIndex ,nToken, cuswidth, cusheight);
  1177.         }
  1178.     } else {
  1179.         _BSSCPopup2(strURL, cuswidth, cusheight);
  1180.     }
  1181.     return;
  1182. }
  1183.  
  1184. if (gbBsIE55)
  1185. {
  1186.     var ehlpdhtm_fOldBefureUnload = window.onbeforeunload;
  1187.     var gnBsUnload=0;
  1188.     window.onbeforeunload = window_BUnload;
  1189. }
  1190.     
  1191. function window_BUnload()
  1192. {
  1193.     gnBsUnload++;
  1194.     if (gnBsUnload>1)
  1195.         return;
  1196.     for (var i = 0; i < arrayPopupURL.length; i ++)
  1197.         removeThis(document.all(getPopupID(i)));
  1198.     arrayPopupURL.length = 0;    
  1199.     if (ehlpdhtm_fOldBefureUnload)
  1200.         ehlpdhtm_fOldBefureUnload();
  1201. }
  1202.  
  1203. function _BSSCPopup2(strURL, width, height)
  1204. {
  1205.     if (gbBsOpera6&&gbBsMac)
  1206.     {
  1207.         var wmTemp = window.open(document.location.href, gstrPopupSecondWindowName);
  1208.         wmTemp.close();
  1209.         setTimeout("_BSSCPopup3(\""+strURL+"\","+width+","+height+");",100);
  1210.     }
  1211.     else
  1212.         _BSSCPopup3(strURL, width, height);
  1213. }
  1214.         
  1215. function _BSSCPopup3(strURL, width, height)
  1216. {
  1217.     if (window.name == gstrPopupSecondWindowName) {
  1218.         window.location = strURL;
  1219.     } else {
  1220.         if (!gbBsMac || !gbBsNS4) {
  1221.             BSSCHidePopupWindow();
  1222.         }
  1223.         var nX = 0;
  1224.         var nY = 0;
  1225.         var nHeight = 300;
  1226.         var nWidth = 400;
  1227.         if (width > 0 && height > 0) {
  1228.             nHeight = height;
  1229.             nWidth = width;
  1230.         }
  1231.         _BSPSGetClientSize();
  1232.  
  1233.         nX = window.gnPopupScreenClickX;
  1234.         nY = window.gnPopupScreenClickY;
  1235.  
  1236.         if (nY + nHeight + 40 > screen.availHeight) {
  1237.             nY = screen.availHeight - nHeight - 40;
  1238.         }
  1239.         if (nX + nWidth + 40 > screen.availWidth) {
  1240.             nX = screen.availWidth - nWidth - 40;
  1241.         }
  1242.  
  1243.         // Launch a separate window
  1244.         var strParam="titlebar=no,toolbar=no,status=no,location=no,menubar=no,resizable=yes,scrollbars=yes";
  1245.         if (gbBsNS) {
  1246.             if (gbBsNS6) {
  1247.                 strParam += ",Height=" + nHeight + ",Width=" + nWidth;
  1248.                 strParam += ",screenX=" + nX + ",screenY=" + nY;
  1249.                 strParam += ",dependent=yes";
  1250.             }
  1251.             else {
  1252.                 strParam += ",OuterHeight=" + nHeight + ",OuterWidth=" + nWidth;
  1253.                 strParam += ",screenX=" + nX + ",screenY=" + nY;
  1254.                 strParam += ",dependent=yes";
  1255.             }
  1256.         }
  1257.         else {
  1258.             strParam += ",height=" + nHeight + ",width=" + nWidth;
  1259.             strParam += ",left=" + nX + ",top=" + nY;
  1260.         }
  1261.         if (gbBsSafari)
  1262.         {
  1263.             if (window.gPopupWindow)
  1264.                 window.gPopupWindow.close();        
  1265.             window.gPopupWindow = window.open(strURL, "", strParam);
  1266.             window.gPopupWindow.name = gstrPopupSecondWindowName;
  1267.             window.gPopupWindow.moveTo(nX, nY);
  1268.             widnow.gPopupWindow.document.location.reload();
  1269.         }    
  1270.         else
  1271.         {
  1272.             var wmTemp=null;
  1273.             if (gbBsKonqueror3)
  1274.             {
  1275.                 if (window.gPopupWindow)
  1276.                     window.gPopupWindow.close();
  1277.             }
  1278.             if (gbBsOpera&&gbBsMac)
  1279.             {
  1280.                 wmTemp= window.open(document.location.href, "Temp", strParam);
  1281.             }
  1282.             window.gPopupWindow = window.open(strURL, gstrPopupSecondWindowName, strParam);
  1283.             if (!gbBsIE)
  1284.                 window.gPopupWindow.focus();
  1285.                 
  1286.             if (wmTemp)
  1287.                 wmTemp.close();
  1288.         }
  1289.  
  1290.         if (gbBsNS4)
  1291.             setEventHandle();
  1292.         else if (gbBsIE4 || gbBsOpera7||gbBsKonqueror3)
  1293.             setTimeout("setPopupFocus();", 100);
  1294.     }
  1295.     return;
  1296. }
  1297.  
  1298. function setEventHandle()
  1299. {
  1300.     window.gPopupWindow.captureEvents(Event.CLICK | Event.BLUR);
  1301.     window.gPopupWindow.onclick = NonIEPopup_HandleClick;
  1302.     window.gPopupWindow.onblur = NonIEPopup_HandleBlur;
  1303. }
  1304.  
  1305. function setPopupFocus()
  1306. {
  1307.     window.gPopupWindow.focus();
  1308. }
  1309.  
  1310. function NonIEPopup_HandleBlur(e)
  1311. {
  1312.     window.gPopupWindow.focus();
  1313. }
  1314.  
  1315. function NonIEPopup_HandleClick(e)
  1316. {
  1317.     // Because navigator will give the event to the handler before the hyperlink, let's
  1318.     // first route the event to see if we are clicking on a Popup menu in a popup.
  1319.     document.routeEvent(e);
  1320.  
  1321.     // If a popup menu is active then don't do anything with the click
  1322.     if (window.gPopupWindow.gbInPopupMenu) {
  1323.         window.gPopupWindow.captureEvents(Event.CLICK);
  1324.         window.gPopupWindow.onclick = NonIEPopup_HandleClick;
  1325.         return false;
  1326.     }
  1327.  
  1328.     // Close the popup window
  1329.     if(e.target.href)
  1330.     {
  1331.         if(e.target.href.indexOf("javascript:")==-1) 
  1332.         {
  1333.             if (e.target.target=="")
  1334.                 window.location.href = e.target.href;
  1335.             else
  1336.                 window.open(e.target.href, e.target.target);
  1337.             this.close();
  1338.         }
  1339.     } 
  1340.     else
  1341.         this.close();
  1342.     return false;
  1343. }
  1344.  
  1345. function BSSCPopup_AfterLoad(nIndex, nToken, cuswidth, cusheight)
  1346. {    
  1347.     if (!window.getPopupIFrame(nIndex).document) {
  1348.         _BSSCPopup2(getPopupURL(nIndex), cuswidth, cusheight);
  1349.         return;
  1350.     }
  1351.     
  1352.     if (!IsValidToken(nToken)) return;
  1353.  
  1354.     if (gbBsNS6)
  1355.     {
  1356.         setAbsPopupURL(nIndex, window.getPopupIFrame(nIndex).document.location.href); // change URL to abs url.
  1357.         BSSCPopup_ResizeAfterLoad(nIndex, nToken, cuswidth, cusheight);
  1358.         return;
  1359.     }
  1360.     
  1361.     if ((window.getPopupIFrame(nIndex).document.readyState == "complete") &&
  1362.         (window.getPopupIFrame(nIndex).document.body != null)) {
  1363.             if (window.getPopupIFrame(nIndex).document.location.href.indexOf("about:blank") != -1) { // add this check. IE will use about:blank" as the default vaule for Iframe.
  1364.                 window.getPopupIFrame(nIndex).document.location = getPopupURL(nIndex);
  1365.                 setTimeout("BSSCPopup_AfterLoad(" + nIndex + "," + nToken + "," + cuswidth + "," + cusheight + ")", 200);
  1366.             }
  1367.             else
  1368.                 {
  1369.                     setAbsPopupURL(nIndex, window.getPopupIFrame(nIndex).document.location.href); // change URL to abs url.
  1370.                     BSSCPopup_ResizeAfterLoad(nIndex, nToken, cuswidth, cusheight);
  1371.                 }
  1372.     } else {
  1373.         setTimeout("BSSCPopup_AfterLoad(" + nIndex + "," + nToken + "," + cuswidth + "," + cusheight + ")", 200);
  1374.     }
  1375. }
  1376.  
  1377. function BSSCPopup_ResizeAfterLoad(nIndex, nToken, cuswidth, cusheight)
  1378. {
  1379.     if (window.gbPopupTimeoutExpired) return;
  1380.  
  1381.     if (!IsValidToken(nToken)) return;
  1382.  
  1383.     getPopupDivStyle(nIndex).visibility = gBsStyVisHide;
  1384.     getPopupIFrameStyle(nIndex).visibility = gBsStyVisHide;
  1385.  
  1386.     // Determine the width and height for the window
  1387.     _BSPSGetClientSize();
  1388.  
  1389.     var size = new BSSCSize(0, 0);
  1390.  
  1391.     if (cuswidth <= 0 || cusheight <= 0)
  1392.         BSSCGetContentSize(window.getPopupIFrame(nIndex), size);
  1393.     else {
  1394.         size.x = cuswidth;
  1395.         size.y = cusheight;
  1396.     }
  1397.  
  1398.     // Determine the width and height for the window
  1399.     var nWidth = size.x;
  1400.     var nHeight = size.y;
  1401.  
  1402.     // for small popup size, we should allow any size.
  1403.     // The popup size should be ok if bigger than 0
  1404.     if (nWidth < 0 || nHeight < 0) return;     // there must be something terribly wrong.        
  1405.  
  1406.     getPopupDivStyle(nIndex).width = nWidth;
  1407.     getPopupDivStyle(nIndex).height = nHeight;
  1408.  
  1409.     getPopupShadowStyle(nIndex).width = nWidth;
  1410.     getPopupShadowStyle(nIndex).height = nHeight;
  1411.     getPopupTopicStyle(nIndex).width = nWidth;
  1412.     getPopupTopicStyle(nIndex).height = nHeight;
  1413.     if (gbBsIE55)
  1414.     {
  1415.         getPopupShadowStyle(nIndex).width = nWidth + 2;
  1416.         getPopupShadowStyle(nIndex).height = nHeight + 2;
  1417.         getPopupTopicStyle(nIndex).width = nWidth + 2;
  1418.         getPopupTopicStyle(nIndex).height = nHeight + 2;
  1419.     }
  1420.  
  1421.     getPopupIFrameStyle(nIndex).width = nWidth;
  1422.     getPopupIFrameStyle(nIndex).height = nHeight;
  1423.     if (gbBsIE55 || gbBsNS6)
  1424.     {
  1425.         getPopupIFrameStyle(nIndex).top = 0;
  1426.         getPopupIFrameStyle(nIndex).left = 0;
  1427.     }
  1428.     
  1429.     var strURL = getPopupURL(nIndex);
  1430.     if (strURL.indexOf("#") != -1&&gbBsNS6)
  1431.         getPopupIFrame(nIndex).location.reload();
  1432.     else if (strURL.indexOf("#") != -1||gbBsNS6)
  1433.         getPopupIFrame(nIndex).location.href = strURL;  // reload again, this will fix the bookmark misunderstand in IE5.
  1434.         
  1435.     MoveDivAndShow(nIndex, nToken, cuswidth, cusheight);
  1436. }
  1437.  
  1438. function getScrollLeft()
  1439. {
  1440.     if (document.body.scrollLeft)
  1441.         return document.body.scrollLeft;
  1442.     else if (window.pageXOffset)
  1443.         return window.pageXOffset;
  1444.     else
  1445.         return 0;
  1446. }
  1447.  
  1448. function getScrollTop()
  1449. {
  1450.     if (document.body.scrollTop)
  1451.         return document.body.scrollTop;
  1452.     else if (window.pageYOffset)
  1453.         return window.pageYOffset;
  1454.     else
  1455.         return 0;
  1456. }
  1457.  
  1458.  
  1459. function MoveDivAndShow(nIndex, nToken, cuswidth, cusheight)
  1460. {
  1461.     if (window.getPopupIFrame(nIndex).document.location.href != getAbsPopupURL(nIndex)) { // if redirect, reload again.
  1462.             window.getPopupIFrame(nIndex).document.location = getPopupURL(nIndex);
  1463.             setTimeout("BSSCPopup_AfterLoad(" + nIndex + "," + nToken + "," + cuswidth + "," + cusheight + ")", 200);
  1464.             return;
  1465.     }
  1466.  
  1467.     // Determine the position of the window
  1468.     var nClickX = window.gnPopupClickX;
  1469.     var nClickY = window.gnPopupClickY;
  1470.     var nTop = 0;
  1471.     var nLeft = 0;
  1472.  
  1473.     var nWidth = parseInt(getPopupDivStyle(nIndex).width);
  1474.     var nHeight = parseInt(getPopupDivStyle(nIndex).height);
  1475.  
  1476.     if (nClickY + nHeight + 20 < gBsClientHeight + getScrollTop()) {
  1477.         nTop = nClickY + 10;
  1478.     } else {
  1479.         nTop = (getScrollTop() + gBsClientHeight) - nHeight - 20;
  1480.     }
  1481.     if (nClickX + nWidth < gBsClientWidth + getScrollLeft()) {
  1482.         nLeft = nClickX;
  1483.     } else {
  1484.         nLeft = (getScrollLeft() + gBsClientWidth) - nWidth - 8;
  1485.     }
  1486.  
  1487.     if (nTop < getScrollTop()) nTop  = getScrollTop() + 1;
  1488.     if (nLeft< getScrollLeft())  nLeft = getScrollLeft() + 1;
  1489.  
  1490.     getPopupDivStyle(nIndex).left = nLeft;
  1491.     getPopupDivStyle(nIndex).top = nTop;
  1492.  
  1493.     // Set the location of the background blocks
  1494.     getPopupShadowStyle(nIndex).left = 6;
  1495.     getPopupShadowStyle(nIndex).top = 6;
  1496.     if (gbBsIE55)
  1497.     {
  1498.         getPopupShadowStyle(nIndex).left = 4;
  1499.         getPopupShadowStyle(nIndex).top = 4;
  1500.     }
  1501.  
  1502.     if (gbBsMac&&gbBsIE4) {
  1503.         // Total hack on the iMac to get the IFrame to position properly
  1504.         getPopupIFrameStyle(nIndex).pixelLeft = 100;
  1505.         getPopupIFrameStyle(nIndex).pixelLeft = 0;
  1506.         // Explicitly call BSSCOnLoad because the Mac doesn't seem to do it
  1507.         getPopupIFrame(nIndex).window.BSSCOnLoad();
  1508.     }
  1509.  
  1510.     if (gbBsNS6&&IsDirty(nIndex))
  1511.         getElement(getPopupIFrameID(nIndex)).addEventListener("load", handleLoadNS, false);
  1512.     else
  1513.         BSSCPopup_Timeout(nIndex , nToken );
  1514.     return;
  1515. }
  1516.  
  1517. function    BSSCSize(x, y)
  1518. {
  1519.     this.x = x;
  1520.     this.y = y;
  1521. }
  1522.  
  1523. function BSSCGetContentSize(thisWindow, size)
  1524. {
  1525.     if (!gbBsIE4 && !gbBsOpera7 && !gbBsNS4)
  1526.         return;
  1527.  
  1528.     if ((gbBsMac&&gbBsIE4)||gbBsNS4||gbBsOpera7) {
  1529.         size.x = 320;
  1530.         size.y = 180;
  1531.         return;
  1532.     }
  1533.  
  1534.     // Resize the width until it is wide enough to handle the content
  1535.     // The trick is to start wide and determine when the scrollHeight changes
  1536.     // because then we know a scrollbar is necessary. We can then go back
  1537.     // to the next widest size (for no scrollbar)
  1538.  
  1539.     var ClientRate = gBsClientHeight / gBsClientWidth;
  1540.  
  1541.     
  1542.     var GoldenSize = new BSSCSize(0,0);
  1543.     GoldenSize.x = gBsClientWidth * gBMaxXOfParent;
  1544.     GoldenSize.y = gBsClientHeight *gBMaxYOfParent ;
  1545.  
  1546.     if (ClientRate > gBRateH_W) {
  1547.         GoldenSize.y = GoldenSize.x * gBRateH_W;
  1548.     }
  1549.     else {
  1550.         GoldenSize.x = GoldenSize.y / gBRateH_W;
  1551.     }
  1552.  
  1553.     // Try to using parent specified max x.
  1554.     var x = 0;
  1555.     var maxgoldx = GoldenSize.x;
  1556.     var maxx = gBsClientWidth * gBMaxXOfParent;
  1557.     
  1558.     // This double resize causes the document to re-render (and we need it to)
  1559.     if (!gbBsIE5)
  1560.         thisWindow.moveTo(10000,10000); // this is used to fix the flash on IE4.
  1561.         
  1562.     thisWindow.resizeTo(1, 1);
  1563.     thisWindow.resizeTo(1, 1);
  1564.     thisWindow.resizeTo(maxgoldx, thisWindow.document.body.scrollHeight + gBscrollHeight);
  1565.     thisWindow.resizeTo(maxgoldx, thisWindow.document.body.scrollHeight + gBscrollHeight);
  1566.         
  1567.     var miny = thisWindow.document.body.scrollHeight + gBscrollHeight;
  1568.     
  1569.     if (miny > GoldenSize.y) // the popup does not fix in the parent wanted golden area. so try to expand itself as large as it can
  1570.     {
  1571.         thisWindow.resizeTo(maxx , thisWindow.document.body.scrollHeight + gBscrollHeight);
  1572.         thisWindow.resizeTo(maxx , thisWindow.document.body.scrollHeight + gBscrollHeight);
  1573.         
  1574.         miny =     thisWindow.document.body.scrollHeight + gBscrollHeight;
  1575.         maxy = gBsClientHeight * gBMaxYOfParent;
  1576.         
  1577.         if (miny > maxy) { // the popup must have a scroll, OK let it be.
  1578.             miny = maxy;
  1579.             size.x = maxx;
  1580.             size.y = maxy;
  1581.             thisWindow.document.body.scroll = 'yes'; // At this time we do want to show scroll any more. so it will looks better a little.
  1582.         }
  1583.         else { // popup still can fit in the parent area by someway. now we choose the same h/w rate as parent.
  1584.             size.y = miny;
  1585.             
  1586.             //  downsize from maxx , now I try to using binary divide.
  1587.             x = maxx;
  1588.             deltax = -maxx/2;
  1589.             //j = 0;
  1590.             while (true) {
  1591.                 x = x + deltax;
  1592.                 thisWindow.resizeTo(x, miny);
  1593.                 thisWindow.resizeTo(x, miny);
  1594.                 diffy = thisWindow.document.body.scrollHeight + gBscrollHeight - x * ClientRate;
  1595.                 if (diffy >  gBpermitYDelta ) // it is higher than wanted, so x need to be wide a little bitter
  1596.                     deltax = Math.abs(deltax) /2;
  1597.                 else if (diffy <  -gBpermitYDelta) // it is shorter than wanted, so x need to be narrow a little bitter
  1598.                     deltax = -Math.abs(deltax) /2;
  1599.                 else 
  1600.                     // the y is close enough to wanted.
  1601.                     break;
  1602.                 if (Math.abs(deltax) < gBpermitXDelta) // the next change is too slight and it can be ignore.
  1603.                     break;
  1604.             }
  1605.             size.x = thisWindow.document.body.scrollWidth; //+ gBscrollWidth;
  1606.             size.y = thisWindow.document.body.scrollHeight;// + gBscrollHeight;    
  1607.             thisWindow.document.body.scroll = 'no';
  1608.         }
  1609.     }
  1610.     else {
  1611.         if (thisWindow.document.body.scrollWidth > maxgoldx) {
  1612.             size.x = maxx; 
  1613.             size.y = miny;    
  1614.             thisWindow.document.body.scroll = 'yes';
  1615.         }
  1616.         else {
  1617.             //  downsize from maxgoldx , now I try to using binary divide.
  1618.             x = maxgoldx;
  1619.             deltax = -maxgoldx/2;
  1620.             while (true) {
  1621.                 x = x + deltax;
  1622.                 thisWindow.resizeTo(x, miny);
  1623.                 thisWindow.resizeTo(x, miny);
  1624.                 diffy = thisWindow.document.body.scrollHeight + gBscrollHeight - x * gBRateH_W;
  1625.                 if (diffy >  gBpermitYDelta ) // it is higher than wanted, so x need to be wide a little bitter
  1626.                     deltax = Math.abs(deltax) /2;
  1627.                 else if (diffy <  -gBpermitYDelta) // it is shorter than wanted, so x need to be narrow a little bitter
  1628.                     deltax = -Math.abs(deltax) /2;
  1629.                 else 
  1630.                     // the y is close enough to wanted.
  1631.                     break;
  1632.                 if (Math.abs(deltax) < gBpermitXDelta) // the next change is too slight and it can be ignore.
  1633.                     break;
  1634.             }
  1635.             size.x = thisWindow.document.body.scrollWidth; //+ gBscrollWidth;
  1636.             size.y = thisWindow.document.body.scrollHeight ;
  1637.             thisWindow.document.body.scroll = 'no'; // At this time we do not want to show scroll any more. so it will looks better a little.
  1638.             thisWindow.resizeTo(size.x, size.y);
  1639.             if (thisWindow.document.body.scrollWidth > size.x)
  1640.             {
  1641.                 size.x = thisWindow.document.body.scrollWidth;
  1642.             }
  1643.             if (thisWindow.document.body.scrollHeight > size.y)
  1644.             {
  1645.                 size.y = thisWindow.document.body.scrollHeight;
  1646.             }
  1647.         }
  1648.     }
  1649.     thisWindow.resizeTo(size.x, size.y);
  1650.     thisWindow.resizeTo(size.x, size.y);
  1651.     return;
  1652. }
  1653.  
  1654. function BSSCPopupParentClicked()
  1655. {
  1656.     if (!window.gbPopupTimeoutExpired) {
  1657.         return false;
  1658.     }
  1659.     
  1660.     document.onmousedown = gbOrignalOnMouseDown;
  1661.  
  1662.     // Simply hide the popup
  1663.     hideAll();
  1664.  
  1665.     window.gbPopupTimeoutExpired = false;
  1666.  
  1667.     return true;
  1668. }
  1669.  
  1670. function isInsideHyperLink(obj)
  1671. {
  1672.     if (obj&&obj!=getParentNode(obj))
  1673.     {
  1674.         if (obj.tagName=="A"||obj.tagName=="IMG")
  1675.             return true;
  1676.         else
  1677.             return isInsideHyperLink(getParentNode(obj));
  1678.     }
  1679.     else
  1680.         return false;
  1681. }
  1682.  
  1683. function BSSCPopupClicked(e)
  1684. {
  1685.     if (!window.gbPopupTimeoutExpired) {
  1686.         return false;
  1687.     }
  1688.  
  1689.     var popupIFrame = getCurrentPopupIFrame();
  1690.     if (popupIFrame == null) {
  1691.         return true;
  1692.     }
  1693.  
  1694.     if (gbBsIE4 && (!((popupIFrame.window.event != null) &&
  1695.         (popupIFrame.window.event.srcElement != null) &&
  1696.         isInsideHyperLink(popupIFrame.window.event.srcElement)))) {
  1697.         document.onmousedown = gbOrignalOnMouseDown;
  1698.         
  1699.         // Simply hide the popup
  1700.         hideAll();
  1701.         window.gbPopupTimeoutExpired = false;
  1702.         return true;
  1703.     }
  1704.     else if (gbBsNS6 && (!((e != null) &&
  1705.             (e.target!= null) && isInsideHyperLink(e.target))))
  1706.     {
  1707.         document.addEventListener("mousedown", gbOrignalOnMouseDown,false);
  1708.         // Simply hide the popup
  1709.         hideAll();
  1710.         window.gbPopupTimeoutExpired = false;
  1711.         return true;        
  1712.     }
  1713. }
  1714.  
  1715. //trace the mouse over's position for hotspot
  1716. function  BSPSPopupOnMouseOver(event)
  1717. {
  1718.     if (gbBsIE4 || gbBsOpera7||gbBsKonqueror3) {
  1719.         window.gnPopupClickX = event.clientX + getScrollLeft();
  1720.         window.gnPopupClickY = event.clientY + getScrollTop();
  1721.         window.gnPopupScreenClickX = event.screenX;
  1722.         window.gnPopupScreenClickY = event.screenY;
  1723.     } else if (gbBsSafari) {
  1724.         window.gnPopupClickX = event.clientX + getScrollLeft();
  1725.         window.gnPopupClickY = event.clientY + getScrollTop();
  1726.         window.gnPopupScreenClickX = event.screenX + window.screenX;
  1727.         window.gnPopupScreenClickY = event.screenY + window.screenY;
  1728.     } else if (gbBsNS4) {
  1729.         window.gnPopupClickX = event.pageX - window.pageXOffset;
  1730.         window.gnPopupClickY = event.pageY - window.pageYOffset;
  1731.         window.gnPopupScreenClickX = event.screenX - window.pageXOffset;
  1732.         window.gnPopupScreenClickY = event.screenY - window.pageYOffset;
  1733.     }
  1734. }
  1735.  
  1736. function BSSCHidePopupWindow()
  1737. {
  1738.     if (window.gPopupWindow != null) {
  1739.         if (gbBsNS4) {
  1740.             if ((typeof window.gPopupWindow != "undefined") && (!window.gPopupWindow.closed)) {
  1741.                 window.gPopupWindow.close();
  1742.                 window.gPopupWindow = null;
  1743.             }
  1744.         }
  1745.     }
  1746.     return;
  1747. }
  1748.  
  1749. // Add the PopupOnClick to the onclick array.
  1750. if (typeof(BsscRegisterOnClick) != "undefined")
  1751. {
  1752.     BsscRegisterOnClick(BsPopupOnClick);
  1753. }
  1754. //End to support previous popup functions
  1755.  
  1756. /// Section End  - Popup (JavaScript 1.0)
  1757.  
  1758. /// Section Begin - Embedded Stub (JavaScript 1.0)
  1759.  
  1760. function BSSCCreatePopupDiv()
  1761. {
  1762.     return;
  1763. }
  1764.  
  1765. function WritePopupMenuLayer()
  1766. {
  1767.     if (BsscHasExtJs()) {_WritePopupMenuLayer();}
  1768. }
  1769.  
  1770. function BSSCPopup(strURL, width, height)
  1771. {
  1772.     var re = new RegExp("'", 'g');
  1773.     strURL = strURL.replace(re, "%27");
  1774.  
  1775.     if (BsscHasExtJs())    { 
  1776.         _BSSCPopup(strURL, width, height);
  1777.     }else{
  1778.         //Create a temporary window first to ensure the real popup comes up on top
  1779.         var wndTemp = null;
  1780.         if (!gbBsNS3) {
  1781.             wndTemp = window.open("", "temp", "titlebar=no,toolbar=no,status=no,location=no,menubar=no,resizable=yes,scrollbars=yes,height=3,width=4");
  1782.         }
  1783.         // Create the real popup window
  1784.         var wndPopup = window.open(strURL, "BSSCPopup", "titlebar=no,toolbar=no,status=no,location=no,menubar=no,resizable=yes,scrollbars=yes,height=300,width=400");
  1785.         // Close the temporary
  1786.         if (!gbBsNS3) {
  1787.             wndTemp.close();
  1788.         } else {
  1789.             wndPopup.focus();
  1790.         }
  1791.     }
  1792. }
  1793.  
  1794. var gbWndTemp = null, gbWndPopupLinks = null;
  1795. var gbstrParaTotal = "";
  1796.  
  1797. function PopupMenu_Invoke()
  1798. {
  1799.     if (BsscHasExtJs()) {
  1800.         return _PopupMenu_Invoke(PopupMenu_Invoke.arguments);
  1801.     }
  1802.     if (gbBsNS3Before || gbBsIE3Before )    {
  1803.         var argLen     = PopupMenu_Invoke.arguments.length;
  1804.         if (argLen < 5) {
  1805.             window.document.location.href = PopupMenu_Invoke.arguments[3];
  1806.             return false;
  1807.         }
  1808.         gbWndTemp = null;
  1809.         gbWndPopupLinks = null;
  1810.         gbstrParaTotal = "";
  1811.         for (var i = 0; i < (argLen - 2) / 2; i++) {
  1812.             var strParaLine = "";
  1813.             if (gbBsNS2){
  1814.                 strParaLine += "<a href=\"";
  1815.                 strParaLine += PopupMenu_Invoke.arguments[2 * i + 3];
  1816.                 strParaLine += "\">"
  1817.                 strParaLine += PopupMenu_Invoke.arguments[2 * i + 2];
  1818.                 strParaLine += "</a>";
  1819.             } else {
  1820.                 strParaLine += "<a href=\"javascript:";
  1821.                 strParaLine += "gotoUrl(\'";
  1822.                 strParaLine += PopupMenu_Invoke.arguments[2 * i + 3];
  1823.                 strParaLine += "\');\"";
  1824.                 if (PopupMenu_Invoke.arguments[1] != '') {
  1825.                     strParaLine += " TARGET='" + PopupMenu_Invoke.arguments[1] + "'";
  1826.                 }
  1827.                 strParaLine += ">";
  1828.                 strParaLine += PopupMenu_Invoke.arguments[2 * i + 2];
  1829.                 strParaLine += "</a>";
  1830.             }
  1831.             strParaLine += "<br>";
  1832.             gbstrParaTotal += strParaLine;
  1833.         }
  1834.         var nHeight = argLen * 15;
  1835.         var nWidth = 400;
  1836.         var strParam = "titlebar=no,toolbar=no,status=no,location=no,menubar=no,resizable=yes,scrollbars=auto";
  1837.         strParam += ",height=" + nHeight + ",width=200,resizable";
  1838.         
  1839.         //Create a temporary window first to ensure the real popup comes up on top
  1840.         //var wndTemp = null;
  1841.         if (!gbBsNS3) {
  1842.             gbWndTemp = window.open("", "temp", "titlebar=no,toolbar=no,status=no,location=no,menubar=no,resizable=yes,scrollbars=yes,height=3,width=4");
  1843.         } 
  1844.         gbWndPopupLinks = window.open("", "popuplinks", strParam);
  1845.  
  1846.         setTimeout("Wait_PopupMenuReady()", 100);
  1847.     }
  1848.     return true;
  1849. }
  1850.  
  1851. function Wait_PopupMenuReady() 
  1852. {
  1853.     if (gbWndPopupLinks != null && "object" == typeof(gbWndPopupLinks.document)) {
  1854.         PopupMenu_InvokeReady();
  1855.     }
  1856.     else 
  1857.         setTimeout("Wait_PopupMenuReady()", 100);
  1858. }
  1859.  
  1860. function PopupMenu_InvokeReady()
  1861. {
  1862.     if (gbWndPopupLinks != null) {
  1863.         gbWndPopupLinks.document.open("text/html");
  1864.         gbWndPopupLinks.document.write("<html><head>");
  1865.         if (gbBsNS2) {
  1866.             gbWndPopupLinks.document.write("<base href=\"" + location +"\">");
  1867.         } else {
  1868.             //YJ: IE301,302 and NS3.x works fine
  1869.             gbWndPopupLinks.document.write("<");
  1870.             gbWndPopupLinks.document.write("script>");
  1871.             gbWndPopupLinks.document.write("function gotoUrl(aUrl) {opener.window.location=aUrl; close();}");
  1872.             gbWndPopupLinks.document.write("<");
  1873.             gbWndPopupLinks.document.write("/script>");
  1874.         }
  1875.         gbWndPopupLinks.document.write("</head><body onBlur=\'self.focus();\'>");
  1876.         gbWndPopupLinks.document.write(gbstrParaTotal);
  1877.         gbWndPopupLinks.document.write("</body></html>");
  1878.         gbWndPopupLinks.document.close();
  1879.  
  1880.         // Close the temporary
  1881.         if (!gbBsNS3 && gbWndTemp != null) {
  1882.             gbWndTemp.close();
  1883.         }else {
  1884.             gbWndPopupLinks.focus();
  1885.         }
  1886.  
  1887.         return true;
  1888.     }
  1889.     return false;
  1890. }
  1891.  
  1892. /// Section End - Embedded Stub (JavaScript 1.0)
  1893.  
  1894. //// Segment End -- (JavaScript 1.0)
  1895.  
  1896. //// Segment Begin -- (JavaScript 1.2)
  1897. /// Section Begin  - kadov DHTM (JavaScript 1.2)
  1898.  
  1899. //Begin to support extended and dropdown text effects.
  1900. function kadovIsParagraph(el)
  1901. {
  1902.     return( el.tagName == "P" || el.tagName.indexOf("H") == 0 ) ? true : false;
  1903. }
  1904.  
  1905. function kadovInitEachChild(el)
  1906. {    
  1907.     for(var i=0; i<getChildNodes(el).length; i++)
  1908.     {
  1909.         var child = getChildNodes(el)[i];
  1910.         if( child.tagName == "SCRIPT" || child.tagName == "!" )
  1911.             continue;
  1912.  
  1913.         if( child.id != "" )
  1914.         {
  1915.             // to wipe out the onload effects
  1916.             if (gbBsIE4&&!gbBsMac)
  1917.             {
  1918.                 var onLoadEffect = child.style.getAttribute( "x-on-pageload" );
  1919.                 if( (onLoadEffect != null) && (onLoadEffect > "") )
  1920.                     child.style.setAttribute( "x-on-pageload", "" );
  1921.             }
  1922.             
  1923.             var href = child.getAttribute("href")
  1924.             if( href != null && href > "" && href.indexOf( "BSSCPopup" ) >= 0 )
  1925.                 kadovFilePopupInit(child.id); // Init for Popup
  1926.             else if( child.className == "dropspot" || child.className == "expandspot" || 
  1927.                      child.className == "glossterm" )
  1928.                 kadovTextPopupInit(child.id);// Init for Expanding/Glossary or DropDown text
  1929.             else if( child.className == "trigger")
  1930.                 kadovInitTrigger(child.id);// Init for Trigger
  1931.             else
  1932.             {
  1933.                 kadovInitEffects(child.id);// Init for DHTML effects
  1934.                 CEngine.SetOneTargetInitialState( child.id );
  1935.             }
  1936.         }
  1937.         
  1938.         if( (child.tagName == "IMG") && (child.getAttribute("dynsrc") > "") )
  1939.             child.start = "mouseover";// to start a AVI file. fileopen doesn't work
  1940.  
  1941.         kadovInitEachChild(child);
  1942.     }
  1943. }
  1944.  
  1945. function kadovRetrieveTextInner(el)
  1946. {    
  1947.     var x = "";
  1948.     if( (!el) || (el.tagName == "!") || (el.tagName == "SCRIPT" ))
  1949.         return x;
  1950.  
  1951.     if( kadovIsParagraph(el) )
  1952.     {
  1953.         var strNewID = " ";
  1954.         if( el.id != "" )
  1955.             strNewID += "id=" + el.id + "_NewSpan ";
  1956.         x = "<span" + strNewID + "style='" + el.style.cssText + "'>" + el.innerHTML + "</span>";
  1957.     }
  1958.     else
  1959.     {
  1960.         for(var i=0; i<getChildNodes(el).length; i++)
  1961.             x += kadovRetrieveTextInner( getChildNodes(el)[i] );
  1962.     }
  1963.     return x;
  1964. }
  1965.  
  1966. function kadovRetrieveCleanHTML( strRawHTML, strTagOpen, strTagClose, nDistance )
  1967. {    
  1968.     var nTagOpen = strRawHTML.indexOf( strTagOpen, 0 );
  1969.     if( nTagOpen < 0 )
  1970.         return strRawHTML;
  1971.  
  1972.     var nTagClose = strRawHTML.indexOf( strTagClose, nTagOpen);
  1973.     if( nTagClose < nTagOpen )
  1974.         return strRawHTML;
  1975.         
  1976.     if( typeof(nDistance) == "number" && nDistance > 0 )
  1977.         if( (nTagClose - nTagOpen) != nDistance )
  1978.             return strRawHTML;
  1979.         
  1980.     var strCleanOnce = strRawHTML.substring(0, nTagOpen) + strRawHTML.substr(nTagClose + strTagClose.length) ;
  1981.     return     kadovRetrieveCleanHTML( strCleanOnce, strTagOpen, strTagClose );
  1982. }
  1983.  
  1984. function kadovAdjustObjectTag(strRawHTML, nStartPos)
  1985. {// adjust object tag for related topics HTML control, because innerHTML misses out the item settings
  1986.     
  1987.     //Is there any DTC?
  1988.     var strDTCTagOpen = '<!--Metadata type="DesignerControl" startspan';
  1989.     var strDTCTagClose = '<!--Metadata type="DesignerControl" endspan-->';
  1990.     var nDTCTagOpen = strRawHTML.indexOf( strDTCTagOpen, nStartPos );
  1991.     if( nDTCTagOpen < 0 )
  1992.         return strRawHTML;
  1993.     var nDTCTagClose = strRawHTML.indexOf( strDTCTagClose, nDTCTagOpen );
  1994.     if( nDTCTagClose < nDTCTagOpen)
  1995.         return strRawHTML; // no Design Time Controls;
  1996.         
  1997.     //Is the DTC HTML Help Control?
  1998.     var strRTObjTagOpen = 'classid=clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11';
  1999.     var strRTObjTagClose = '</OBJECT>';
  2000.     var nRTObjTagOpen = strRawHTML.indexOf( strRTObjTagOpen, nDTCTagOpen );
  2001.     if( nRTObjTagOpen < nDTCTagOpen )
  2002.         return strRawHTML;
  2003.     var nRTObjTagClose = strRawHTML.indexOf( strRTObjTagClose, nRTObjTagOpen );
  2004.     if( nRTObjTagClose < nRTObjTagOpen )
  2005.         return strRawHTML; // is not a HTML help control
  2006.         
  2007.     // Is it a related Topics html help control?
  2008.     var strRTObjLabel = '<PARAM NAME=\"Command\" VALUE=\"Related Topics';
  2009.     if( strRawHTML.indexOf(strRTObjLabel, nRTObjTagOpen) < 0 )
  2010.         return strRawHTML;
  2011.     
  2012.     // does the commented object tag contain a items parameters        
  2013.     var strRTItemsOpen = '<param name="Items" value="';
  2014.     var strRTItemsClose = '$$**$$">';
  2015.     var nRTItemsOpen = strRawHTML.indexOf(strRTItemsOpen, nDTCTagOpen);
  2016.     if( nRTItemsOpen < nDTCTagOpen )
  2017.         return strRawHTML;
  2018.     var nRTItemsClose = strRawHTML.indexOf(strRTItemsClose, nRTItemsOpen);
  2019.     if( nRTItemsClose < nRTItemsOpen )
  2020.         return strRawHTML;
  2021.         
  2022.     // found a items string
  2023.     var strItems = strRawHTML.substring( nRTItemsOpen + strRTItemsOpen.length, nRTItemsClose);
  2024.     if( strItems.length < 1 )
  2025.         return strRawHTML;
  2026.     
  2027.     // to reconstruct the item(s) param tag(s)
  2028.     var strItemsArray = strItems.split('$$**$$');
  2029.     if( strItemsArray.length < 1 )
  2030.         return strRawHTML;
  2031.     var strRunTimeItemParam = "";
  2032.     for( var i = 0; i < strItemsArray.length; i++ )
  2033.     {
  2034.         strRunTimeItemParam += '<PARAM  NAME="Item' + (i+1);
  2035.         strRunTimeItemParam += '"' + '  VALUE="';
  2036.         strRunTimeItemParam += strItemsArray[i];
  2037.         strRunTimeItemParam += '">';
  2038.     }
  2039.     
  2040.     // to insert the reconstructed item params into runtime object tag
  2041.     var strAdjustedHTML = strRawHTML.substring(0,nRTObjTagClose) + strRunTimeItemParam + strRawHTML.substring(nRTObjTagClose, strRawHTML.length);
  2042.     return kadovAdjustObjectTag(strAdjustedHTML, nDTCTagClose + strDTCTagClose.length);
  2043. }
  2044.  
  2045. function kadovTextPopupOnLoad( el )
  2046. {
  2047.     if( typeof(el) == "string" )
  2048.         el = getElement(el);
  2049.  
  2050.     var src = el.getAttribute( "x-use-popup" );
  2051.     var bNeedMove=true;
  2052.     if(!src&&el.id)
  2053.     {
  2054.         for (var i=0;i<gPopupData.length;i++)
  2055.             if (gPopupData[i].el==el.id)
  2056.             {
  2057.                 src=gPopupData[i].popupId;
  2058.                 bNeedMove=false;
  2059.                 break;
  2060.             }
  2061.     }
  2062.     if(!src)
  2063.         src = el.style.getAttribute( "x-use-popup" );    
  2064.     if (!src)    
  2065.         return 0;
  2066.  
  2067.     var name = src;
  2068.     if( src.substr(0,1) == "#" ) 
  2069.         name = src.substr(1, src.length-1);
  2070.     var srcDiv = getElement(name);
  2071.     if( !srcDiv )
  2072.         return 1;
  2073.  
  2074.     if (bNeedMove)
  2075.     {
  2076.         var type = el.getAttribute( "x-popup-type" );
  2077.         if (!type)
  2078.             type = el.style.getAttribute("x-popup-type");
  2079.         if (!type)        
  2080.             return 1;        
  2081.         var setup = el.getAttribute( "x-tmp-setup" );
  2082.         var newId = name;
  2083.         if( newId.indexOf( "_tmp") <= 0 )
  2084.             newId += "_tmp";
  2085.  
  2086.         if( !setup)
  2087.         {
  2088.             el.setAttribute( "x-tmp-setup", 1 );
  2089.  
  2090.             if( type == "pulldown"  )
  2091.             {
  2092.                 var strAdjust = kadovAdjustObjectTag(srcDiv.innerHTML,0);
  2093.                 var strCleanHTML = kadovRetrieveCleanHTML(strAdjust, "<!--", "-->");
  2094.                 strCleanHTML = kadovRetrieveCleanHTML(strCleanHTML, "<SCRIPT", "/SCRIPT>");
  2095.                 
  2096.                 //work around the bug in HH.exe that highlight the phrases when use Search tab
  2097.                 //this approach is just removing the <FONT...> tag inserted by Microsoft in the runtime
  2098.                 strCleanHTML = kadovRetrieveCleanHTML(strCleanHTML, "<FONT color=#", "\">", 52);
  2099.                 
  2100.                 var strStyle = " style='display:none; position:relative;";
  2101.                 var newDiv = "<div class=droptext id=" + newId + strStyle + "'>" + strCleanHTML + "</div>";
  2102.  
  2103.                 removeThis(srcDiv); // empty the original DIV tag
  2104.                 var elParentPra = kadovFindParentParagraph(el);
  2105.                 if( elParentPra )
  2106.                     insertAdjacentHTML(elParentPra, "afterEnd", newDiv );
  2107.             }
  2108.             else if( type == "expanding"  )
  2109.             {
  2110.                 var inner = kadovRetrieveTextInner(srcDiv);
  2111.                 if( inner == "" )
  2112.                     inner = srcDiv.innerHTML;
  2113.                 var strAdjust = kadovAdjustObjectTag(inner,0);
  2114.                 var strCleanHTML = kadovRetrieveCleanHTML(strAdjust, "<!--", "-->");
  2115.                 strCleanHTML = kadovRetrieveCleanHTML(strCleanHTML, "<SCRIPT", "/SCRIPT>");
  2116.                 var strClassName = (el.className == "glossterm") ? "glosstext" : "expandtext";
  2117.                 var newSpan = "<span class=" + strClassName + " style='display: none;' id=" + newId + "> " + strCleanHTML + "</span>";
  2118.                 removeThis(srcDiv); // empty the original DIV tag
  2119.                 insertAdjacentHTML(el, "afterEnd", newSpan );
  2120.             }
  2121.         }
  2122.     }
  2123.     else
  2124.     {
  2125.         srcDiv.style.display = "none";
  2126.     }
  2127.     return 0;
  2128. }
  2129.  
  2130. function getElementsByTag(obj,sTagName)
  2131. {
  2132.     if(obj.getElementsByTagName)
  2133.         return obj.getElementsByTagName(sTagName);
  2134.     else if(obj.all)
  2135.         return obj.all.tags(sTagName);
  2136.     return null;
  2137. }
  2138.  
  2139. function getElement(sID)
  2140. {
  2141.     if(document.getElementById)
  2142.         return document.getElementById(sID);
  2143.     else if(document.all)
  2144.         return document.all(sID);
  2145.     return null;
  2146. }
  2147.  
  2148. function getParentNode(obj)
  2149. {
  2150.     if(obj.parentNode)
  2151.         return obj.parentNode;
  2152.     else if(obj.parentElement)
  2153.         return obj.parentElement;
  2154.     return null;
  2155. }
  2156.  
  2157. function getChildNodes(obj)
  2158. {
  2159.     if(obj.childNodes)
  2160.     {
  2161.         var children = new Array();
  2162.         for (var i = 0; i < obj.childNodes.length; i++)
  2163.         {
  2164.             if (obj.childNodes[i].nodeType == 1)
  2165.                 children[children.length] = obj.childNodes[i];
  2166.         }
  2167.         return children;
  2168.     }
  2169.     else if(obj.children)
  2170.         return obj.children;
  2171.     return null;    
  2172. }
  2173.  
  2174. function removeThis(obj)
  2175. {
  2176.     if(obj.parentNode)
  2177.         obj.parentNode.removeChild(obj);
  2178.     else
  2179.         obj.outerHTML="";
  2180. }
  2181.  
  2182. function kadovTextPopup( el )
  2183. {
  2184.     if (!gbBsIE4 && !gbBsOpera7 && !gbBsSafari && !gbBsNS6 && !gbBsKonqueror3 )
  2185.         return;
  2186.  
  2187.     var bNeedMove=true;
  2188.     
  2189.     if (window.event)
  2190.         window.event.cancelBubble = true;
  2191.  
  2192.     if( typeof(el) == "string" )
  2193.         el = getElement(el);
  2194.  
  2195.     if (!el||el==window)
  2196.         return;
  2197.     
  2198.     var src = el.getAttribute( "x-use-popup" );
  2199.     if(!src&&el.id)
  2200.     {
  2201.         for (var i=0;i<gPopupData.length;i++)
  2202.             if (gPopupData[i].el==el.id)
  2203.             {
  2204.                 src=gPopupData[i].popupId;
  2205.                 bNeedMove=false;
  2206.                 break;
  2207.             }
  2208.     }
  2209.     if(!src)
  2210.         src = el.style.getAttribute( "x-use-popup" );    
  2211.     if(!src)
  2212.         return;
  2213.         
  2214.     var name = src;
  2215.     if( src.substr(0,1) == "#" ) 
  2216.     if (bNeedMove)
  2217.         name = src.substr(1, src.length-1) + "_tmp";
  2218.     else
  2219.         name = src.substr(1, src.length-1);
  2220.  
  2221.     var srcDiv = getElement(name);
  2222.     if( !srcDiv )
  2223.         return;
  2224.  
  2225.     if( srcDiv )
  2226.     {
  2227.         if( srcDiv.style.display == "" )
  2228.             srcDiv.style.display = "none";
  2229.         else
  2230.         {
  2231.             srcDiv.style.display = "";
  2232.             if( typeof(srcDiv.bInitialized) == "undefined" )
  2233.             {
  2234.                 srcDiv.bInitialized = true;
  2235.                 kadovInitEffects(name);
  2236.                 kadovInitEachChild(srcDiv);
  2237.             }
  2238.         }
  2239.     }
  2240.     if(gbBsIE4)
  2241.         event.returnValue=false;
  2242.     return;
  2243. }
  2244.  
  2245. function kadovFindParentParagraph( el )
  2246. {
  2247.     if( typeof(el) == "string" )
  2248.         el = getElement(el);
  2249.     if( (!el) || el.tagName == "BODY" )
  2250.         return null;
  2251.     if( kadovIsParagraph(getParentNode(el)) )
  2252.         return getParentNode(el);
  2253.     else
  2254.         return kadovFindParentParagraph( getParentNode(el) );
  2255. }
  2256.  
  2257. //Begin HTML code invoked function
  2258. function kadovRegisterEventHandler( obj, strEvent, strEventHandler )
  2259. {
  2260.     if( !gbBsIE4 )
  2261.         return;
  2262.     CCSSP.RegisterEventHandler( obj, strEvent, strEventHandler );
  2263. }
  2264.  
  2265. function textPopupData(el, popupId)
  2266. {
  2267.     this.el = el;
  2268.     this.popupId = "#"+popupId;
  2269. }
  2270.  
  2271. var gPopupData = new Array();
  2272.  
  2273. function kadovTextPopupInit( el, popupId)
  2274. {
  2275.     if (!gbBsIE4 && !gbBsOpera7 && !gbBsSafari && !gbBsNS6 && !gbBsKonqueror3)
  2276.         return;
  2277.         
  2278.     if( typeof(el) == "string" )
  2279.     {
  2280.         if (popupId)
  2281.         {
  2282.             gPopupData[gPopupData.length]=new textPopupData(el, popupId);
  2283.         }
  2284.         el = getElement(el);
  2285.     }
  2286.         
  2287.     if( el != null )
  2288.     {
  2289.         CCSSP.RegisterEventHandler( el, "onclick", "kadovTextPopup(\"" + el.id +"\");" );
  2290.         CCSSP.RegisterEventHandler( window, "onload", "kadovTextPopupOnLoad(\"" + el.id +"\");" );
  2291.     }
  2292. }
  2293. //End HTML code invoked function
  2294.  
  2295. //End to support extended and dropdown text effects.
  2296.  
  2297. //Begin to convert iWrite format to RoboEditor Format for DHTML effects
  2298. function kadovInitTriggersInHead( )
  2299. {
  2300.   if( Object.xDelayedInitElements )
  2301.   {
  2302.      var x = Object.xDelayedInitElements;
  2303.      for(i=0; i<x.length; i++)
  2304.          kadovInitTrigger( x[i] );
  2305.   }
  2306. }
  2307.  
  2308. //Begin HTML code invoked function
  2309. function kadovFilePopupInit( el )
  2310. {
  2311.     if( typeof(el) == "string" )
  2312.         el = getElement(el);
  2313.  
  2314.     if( el != null )
  2315.         CCSSP.RegisterEventHandler( el, "onmouseover", "BSPSPopupOnMouseOver(event);" );
  2316. }
  2317.  
  2318. function kadovInitTrigger( element )
  2319. {
  2320.     if( !gbBsIE4 )
  2321.         return;
  2322.     var srcElement = element;
  2323.     if( typeof(srcElement) == "string" )
  2324.     {
  2325.         srcElement = getElement(element,0);
  2326.         if(srcElement == null)
  2327.             return;
  2328.     }
  2329.     
  2330.     if( !kadovIsParentVisible(srcElement) )
  2331.         return;
  2332.  
  2333.     var targets = srcElement.getAttribute( "x-targets" );
  2334.     if (!targets)
  2335.         targets = srcElement.style.getAttribute("x-targets");
  2336.     if (!targets)
  2337.         return;    
  2338.     var arrOneTarget = targets.split( "," );
  2339.     for( var i = 0; i < arrOneTarget.length; i ++ )
  2340.         bsscFXInit( element, arrOneTarget[i], null, null, null, null );
  2341. }
  2342.  
  2343. function kadovIsParentVisible( el )
  2344. {
  2345.     if( typeof(el) == "string" )
  2346.         el = getElement(el);
  2347.     if( (!el) || el.tagName == "BODY" )
  2348.         return true;
  2349.     if( el.style.display == 'none' ) //el.visibility == 'hidden' || 
  2350.         return false;
  2351.     else
  2352.         return kadovIsParentVisible( getParentNode(el) );
  2353. }
  2354.  
  2355. function kadovInitEffects( element )
  2356. {
  2357.     if( !gbBsIE4 )
  2358.         return;
  2359.     var srcElement = element;
  2360.     if( typeof(srcElement) == "string" )
  2361.     {
  2362.         srcElement = getElement(element,0);
  2363.         if(srcElement == null)
  2364.             return;
  2365.     }
  2366.     
  2367.     if( !kadovIsParentVisible(srcElement) )
  2368.         return;
  2369.     
  2370.     kadovInitEffect( srcElement, "x-on-hover" );
  2371.     kadovInitEffect( srcElement, "x-on-pageclick" );
  2372.     kadovInitEffect( srcElement, "x-on-pageload" );
  2373.     kadovInitEffect( srcElement, "x-on-trigger-1" );
  2374.     kadovInitEffect( srcElement, "x-on-trigger-2" );
  2375. }
  2376. //End HTML code invoked function
  2377.  
  2378. function kadovInitEffect( element, prop )
  2379. {
  2380.     var values = null;
  2381.     if( element.getAttribute( "currentStyle" )  && element.currentStyle.getAttribute)
  2382.         values = element.currentStyle.getAttribute( prop );
  2383.     else  if (element.style.getAttribute)
  2384.         values = element.style.getAttribute( prop );
  2385.     if( !values )
  2386.         return;
  2387.  
  2388.     var functions = new Array();
  2389.     var nIdx = 0, nStart = 0;
  2390.     var nNext = values.indexOf( "\)", 0);
  2391.     while( nNext >= 0 && nNext < values.length )
  2392.     {
  2393.         functions[nIdx] = values.substr( nStart, nNext-nStart+1);
  2394.         nStart = nNext + 1;
  2395.         nIdx++;
  2396.         nNext = values.indexOf( "\)", nStart);
  2397.     }
  2398.         
  2399.     for( var i=0; i<functions.length; i++)
  2400.     {
  2401.         var id = element.getAttribute( "id" );
  2402.         var translatedProp = kadovTranslateProp(prop);
  2403.  
  2404.         var lp = functions[i].indexOf( "(" );
  2405.         var fnname = functions[i].substring(0, lp);
  2406.         var srcargs = functions[i].substring(lp+1, functions[i].length-1);
  2407.         
  2408.         var nClickTimes = 1;
  2409.         var arrForClickCount = srcargs.split( "," );
  2410.         for( var j = 0; j < arrForClickCount.length; j++ )
  2411.         {// to locate and get the "clicks=99" settings
  2412.             var nPageClick = arrForClickCount[j].indexOf("clicks");
  2413.             if( nPageClick >= 0 )
  2414.             {
  2415.                 nPageClick = arrForClickCount[j].indexOf("=");
  2416.                 if( nPageClick > 0 )
  2417.                 {
  2418.                     nClickTimes = arrForClickCount[j].substring( nPageClick + 1, arrForClickCount[j].length) * 1;
  2419.                     break;
  2420.                 }
  2421.             }
  2422.         }
  2423.         var args = srcargs;
  2424.         if( j < arrForClickCount.length )
  2425.         {// to strip out the "clicks=99" from the arguments string
  2426.             args = "";
  2427.             for( var k = 0; k < arrForClickCount.length; k ++ )
  2428.             {
  2429.                 if( k != j )
  2430.                 {
  2431.                     args += arrForClickCount[k];
  2432.                     if( k < arrForClickCount.length - 1 )
  2433.                         args += ",";
  2434.                 }
  2435.             }
  2436.         }
  2437.         bsscFXInit( null, id, translatedProp, fnname, args, nClickTimes );
  2438.     }
  2439. }
  2440.  
  2441. function kadovTranslateProp( prop )
  2442. {
  2443.     switch( prop )
  2444.     {
  2445.     case "x-on-hover" :     return "bsschover";
  2446.     case "x-on-pageclick" : return "bsscpageclick";
  2447.     case "x-on-pageload" :  return "bsscpageload";
  2448.     case "x-on-trigger-1" : return "bssctrigger1";
  2449.     case "x-on-trigger-2" : return "bssctrigger2";
  2450.     }
  2451.     return null;
  2452. }
  2453. //End to convert iWrite format to RoboEditor Format for DHTML effects
  2454.  
  2455. //Begin the definition of one entry to DHTML effects
  2456. function bsscFXInit( trigger_ID, target_ID, event_type, 
  2457.     action_type, action_setting, event_addional )
  2458. {
  2459.     if( (!gbBsWindows && !gbBsSunOS  && !(gbBsMac&&gbBsIE5)) || typeof(target_ID) != "string" )//MUST have a target_ID
  2460.         return; // we don't support Navigator yet
  2461.     
  2462.     if( typeof(event_type) == "string" )
  2463.         event_type = event_type.toLowerCase();
  2464.     if( typeof(action_type) == "string" )
  2465.         action_type = action_type.toLowerCase();
  2466.     if( typeof(action_setting) == "string" )
  2467.          action_setting = action_setting.toLowerCase();
  2468.     
  2469.     // to get the target element then add it to the target list
  2470.     var eleTarget = CCSSP.GetObject( target_ID );
  2471.     if( (eleTarget != null) && (event_type != null) && (action_type != null) )
  2472.     {
  2473.         CEngine.AddOneTarget( target_ID, eleTarget );
  2474.         CEngine.BuildTargetObject(target_ID, event_type, action_type, action_setting, event_addional);
  2475.     }
  2476.     
  2477.     // to validate the trigger_ID parameter
  2478.     if( typeof(trigger_ID) == "string" && trigger_ID != "" )
  2479.         CEngine.BuildTriggerObject( trigger_ID, target_ID );
  2480. }    
  2481. //End the definition of one entry to DHTML effects
  2482.  
  2483. /// Section End  - kadov DHTM (JavaScript 1.2)
  2484.  
  2485. /// Section Begin  - CCSSP DHTM (JavaScript 1.2)
  2486.  
  2487. //Begin JavaScript libary for cross-platform positioning object.
  2488. function CCSSP(){} // constructor of CCSSP class
  2489.  
  2490. CCSSP.GetObject = function( obj )
  2491. {//convert object name string or reference into a valid object reference
  2492.     if( typeof(obj) == "object" )
  2493.         return obj;
  2494.     else if( typeof(obj) == "string" && obj != "")
  2495.     {
  2496.         if( gbBsNS4 )
  2497.             return eval("document." + obj);
  2498.         else
  2499.             return eval("document.all(\"" + obj + "\")");
  2500.     }
  2501.     else
  2502.         return null;
  2503. }
  2504.  
  2505. CCSSP.MoveObjectTo = function(obj, x, y)
  2506. {//positioning an object at a specific pixel coordinate
  2507.     if( gbBsNS4 )
  2508.         obj.moveTo(x,y);
  2509.     else
  2510.     {
  2511.         obj.style.pixelLeft = x;
  2512.         obj.style.pixelTop = y;
  2513.     }
  2514. }
  2515.  
  2516. CCSSP.MoveObjectBy = function(obj, dx, dy)
  2517. {//moveing a object by x and/or y pixel
  2518.     if( gbBsNS4 )
  2519.         obj.moveBy(dx,dy);
  2520.     else
  2521.     {
  2522.         obj.style.pixelLeft += dx;
  2523.         obj.style.pixelTop += dy;
  2524.     }
  2525. }
  2526.  
  2527. CCSSP.SetObjectBGColor = function(obj, color)
  2528. {//set the background color of an object
  2529.     if( gbBsNS4 )
  2530.         obj.bgColor = color;
  2531.     else
  2532.         obj.style.backgroundColor = color;
  2533. }
  2534.  
  2535. CCSSP.ShowObject = function(obj, bShow)
  2536. {// set the object to be visible or invisible
  2537.     if( gbBsNS4 )
  2538.         obj.visibility = (bShow == true) ? 'show' : 'hide';
  2539.     else
  2540.         obj.style.visibility = (bShow == true) ? 'visible' : 'hidden';// when hidden, it still occupy some space.
  2541. }
  2542.  
  2543. CCSSP.GetObjectLeft = function(obj)
  2544. {// retrieve the x coordinate of a posionable object
  2545.     if( gbBsNS4 )
  2546.         return obj.left;
  2547.     else
  2548.         return obj.style.pixelLeft;
  2549. }
  2550.  
  2551. CCSSP.GetObjectTop = function(obj)
  2552. {// retrieve the y coordinate of a posionable object
  2553.     if( gbBsNS4 )
  2554.         return obj.top;
  2555.     else
  2556.         return obj.style.pixelTop;
  2557. }
  2558.  
  2559. CCSSP.GetObjectContainLeft = function(obj)
  2560. {// retrieve the x coordinate of a posionable object relative to it's parent element
  2561.     if( gbBsNS4 )
  2562.         return obj.pageX;
  2563.     else
  2564.     {
  2565.         if( obj == document.body )
  2566.             return obj.clientLeft;
  2567.         else
  2568.             return obj.offsetLeft;
  2569.     }
  2570. }
  2571.  
  2572. CCSSP.GetObjectWindowLeft = function(obj)
  2573. {// retrieve the x coordinate of a posionable object relative to browser window
  2574.     if( gbBsNS4 )
  2575.         return obj.pageX;
  2576.     else
  2577.     {
  2578.         var nOffsetWindowLeft = 0;
  2579.         for(var element = obj; element; element = element.offsetParent)
  2580.             nOffsetWindowLeft += CCSSP.GetObjectContainLeft(element);
  2581.         return nOffsetWindowLeft;
  2582.     }
  2583. }
  2584.  
  2585. CCSSP.GetObjectContainTop = function(obj)
  2586. {// retrieve the y coordinate of a posionable object relative to it's parent element
  2587.     if( gbBsNS4 )
  2588.         return obj.pageY;
  2589.     else
  2590.     {
  2591.         if( obj == document.body )
  2592.             return obj.clientTop;
  2593.         else
  2594.             return obj.offsetTop;
  2595.     }
  2596. }
  2597.  
  2598. CCSSP.GetObjectWindowTop = function(obj)
  2599. {// retrieve the y coordinate of a posionable object relative to browser window
  2600.     if( gbBsNS4 )
  2601.         return obj.pageY;
  2602.     else
  2603.     {
  2604.         var nOffsetWindowTop = 0;
  2605.         for(var element = obj; element; element = element.offsetParent)
  2606.             nOffsetWindowTop += CCSSP.GetObjectContainTop(element);
  2607.         return nOffsetWindowTop;
  2608.     }
  2609. }
  2610.  
  2611. CCSSP.GetObjectHeight = function(obj)
  2612. {// retrieve the height of a posionable object
  2613.     if( gbBsNS4 )
  2614.         return obj.clip.height;
  2615.     else
  2616.         return obj.offsetHeight;
  2617. }
  2618.  
  2619. CCSSP.GetObjectWidth = function(obj)
  2620. {// retrieve the width of a posionable object
  2621.     if( gbBsNS4 )
  2622.         return obj.clip.width;
  2623.     else
  2624.         return obj.offsetWidth;
  2625. }
  2626.  
  2627. CCSSP.RegisterEventHandler = function( srcObj, rawEventName, funcHandler )
  2628. { // to add the "funcHandler" as the "rawEventName" 's handler to the "srcObj" object,the original event handler will be combined
  2629.     if (gbBsNS4 && !gbBsNS6)
  2630.         return ;
  2631.         
  2632.     var oldHandler = "";
  2633.  
  2634.     if (gbBsMac &&gbBsIE4&&!gbBsIE5)
  2635.     {
  2636.         if (typeof(srcObj[rawEventName.toLowerCase()])=="unknown")
  2637.         { //search for <SCRIPT> tag which define the event handler
  2638.             for( var i = 0; i < document.scripts.length; i++ ) 
  2639.             {
  2640.                 var script = document.scripts[i];
  2641.                 if( (script.htmlFor == srcObj.id || script.htmlFor == srcObj ) && script.event == rawEventName )
  2642.                 {
  2643.                     oldHandler = script.innerHTML;
  2644.                     break;
  2645.                 }
  2646.             }
  2647.         }
  2648.     }
  2649.     else
  2650.     {
  2651.         var oldInlineHandler = srcObj[rawEventName.toLowerCase()];
  2652.         if( oldInlineHandler != null && typeof(oldInlineHandler) != "undefined")
  2653.         {
  2654.             var functionDefinition = oldInlineHandler.toString();
  2655.             var bodyStart = functionDefinition.indexOf( "{" );
  2656.             var bodyEnd = functionDefinition.lastIndexOf( "}" );
  2657.             if( bodyStart > 0 || bodyEnd > bodyStart )
  2658.                 oldHandler = functionDefinition.substr( bodyStart + 1, bodyEnd - bodyStart - 2 );
  2659.         }
  2660.         else if( gbBsIE4 )
  2661.         { //search for <SCRIPT> tag which define the event handler
  2662.             for( var i = 0; i < document.scripts.length; i++ ) 
  2663.             {
  2664.                 var script = document.scripts[i];
  2665.                 if( (script.htmlFor == srcObj.id || script.htmlFor == srcObj ) && script.event == rawEventName )
  2666.                 {
  2667.                     oldHandler = script.innerHTML;
  2668.                     break;
  2669.                 }
  2670.             }
  2671.         }
  2672.     }
  2673.     if( oldHandler.indexOf(funcHandler) >= 0 )
  2674.         return;// to prevent register the funtion twice.
  2675.  
  2676.     if( gbBsNS4 ) // only "onload, onresize, onfocus" apply to window
  2677.     {// other raw events will apply to layer
  2678.         var noOn = rawEventName.substring(2, rawEventName.length);
  2679.         if( typeof(noOn) == "string" && noOn.length > 3 ) {
  2680.             if (srcObj.captureEvents)
  2681.                 srcObj.captureEvents( Event[noOn.toUpperCase()] );
  2682.         }
  2683.     }
  2684.     
  2685.     var newHandler = oldHandler;
  2686.     if( newHandler.length == 0 )
  2687.         newHandler = funcHandler;
  2688.     else
  2689.         newHandler += "; " + funcHandler;
  2690.     
  2691.     srcObj[rawEventName.toLowerCase()] = new Function( newHandler );
  2692. }
  2693.  
  2694. CCSSP.GetWindowHeight = function()
  2695. {// retrieve the height of available content in browser window
  2696.     if( gbBsNS4 )
  2697.         return window.innerHeight;
  2698.     else
  2699.         return document.body.clientHeight;
  2700. }
  2701.  
  2702. CCSSP.GetWindowBottom = function()
  2703. {// retrieve the bottom postion of browser window
  2704.     if( gbBsNS4 )
  2705.         return window.outerHeight + window.pageYOffset;
  2706.     else
  2707.         return document.body.clientHeight + document.body.scrollTop;
  2708. }
  2709.  
  2710. CCSSP.GetWindowWidth = function()
  2711. {// retrieve the width of available content in browser window
  2712.     if( gbBsNS4 )
  2713.         return window.innerWidth;
  2714.     else
  2715.         return document.body.clientWidth;
  2716. }
  2717.  
  2718. CCSSP.GetWindowRight = function()
  2719. {// retrieve the right postion of browser window
  2720.     if( gbBsNS4 )
  2721.         return window.outerWidth + window.pageXOffset;
  2722.     else
  2723.         return document.body.clientWidth + document.body.scrollLeft;
  2724. }
  2725.  
  2726. CCSSP.TrimString = function( objString, subtrim )
  2727. {// to trim the "subtrim" in the beginning and ending of a string object
  2728.     if( typeof(subtrim) != "string" || subtrim == null )
  2729.         return objString;
  2730.     var strHead = objString.substring(0, 1);
  2731.     var strRear = objString.substring(objString.length-1, objString.length);
  2732.     if( strHead != subtrim && strRear != subtrim )
  2733.         return objString;
  2734.     
  2735.     var spacePos = objString.indexOf(subtrim);
  2736.     if( spacePos < 0 )
  2737.         return objString;
  2738.     else if( spacePos == objString.length - 1 )
  2739.         return objString.substring(0, spacePos);
  2740.     else
  2741.     {
  2742.         var newString = objString.substring( spacePos + 1, objString.length);
  2743.         return CCSSP.TrimString( newString, subtrim );
  2744.     }
  2745. }
  2746.  
  2747. CCSSP.TrimSpace = function( objString )
  2748. {
  2749.     var Trim1 = CCSSP.TrimString( objString, " ");
  2750.     return CCSSP.TrimString( Trim1, "\'");
  2751. }
  2752.  
  2753. CCSSP.GetEventElement = function( navEventObject )
  2754. {// to get the element who fired the current event
  2755.     if(gbBsNS4) 
  2756.         if (gbBsNS6)
  2757.             return null;
  2758.         else
  2759.              navEventObject.target;
  2760.     else
  2761.         return event.srcElement;
  2762. }
  2763.  
  2764. CCSSP.PrepareFilter = function( Obj )
  2765. {//to prepare for making the filter work
  2766.     Obj.style.filter = "";
  2767.     if( Obj.style.width != "" || Obj.style.height != "" || Obj.style.position == "absolute" )
  2768.         return;
  2769.     Obj.style.height = CCSSP.GetObjectHeight(Obj);
  2770. }
  2771.  
  2772. CCSSP.IsDescendant = function( progenitor, progeny )
  2773. {
  2774.     if( typeof(progeny) == "undefined" || progeny == null )
  2775.         return false;
  2776.     else if( progeny == progenitor )
  2777.         return true; 
  2778.     else if( progeny.id == progenitor.id ) 
  2779.         return true; 
  2780.     else if( getParentNode(progeny) == getParentNode(progenitor))
  2781.         return false;
  2782.     else
  2783.         return CCSSP.IsDescendant( progenitor, getParentNode(progeny));
  2784. }
  2785.  
  2786. CCSSP.IsTextTag = function( Obj )
  2787. {
  2788.     if( typeof( Obj.tagName ) == "undefined" )
  2789.         return false;
  2790.     return( Obj.tagName.indexOf("H") == 0 || Obj.tagName == "P" || 
  2791.             Obj.tagName == "FONT" || Obj.tagName == "SPAN" );
  2792. }
  2793.  
  2794. //End JavaScript libary for cross-platform positioning object.
  2795.  
  2796. /// Section End  - CCSSP DHTM (JavaScript 1.2)
  2797.  
  2798. /// Section Begin  - CCSSP DHTM 1 (JavaScript 1.2)
  2799.  
  2800. //Begin the definition of class CTrigger
  2801. function CTrigger( TriggerElement )
  2802. {
  2803.     // object : the trigger element. Never be null. 
  2804.     this.eleTrigger = TriggerElement;
  2805.     
  2806.     // number : the click counter number: only 3 values: 0,1,2;
  2807.     this.nCounter = 0; 
  2808.     
  2809.     //object as associative array of string:
  2810.     // the associate target ID strings; one element at least.            
  2811.     this.objStrTarget = new Object();
  2812.     this.eleTrigger.style.cursor = "hand";
  2813.     if( this.eleTrigger.tagName == "AREA" && this.eleTrigger.getAttribute("href") == "" )
  2814.         this.eleTrigger.setAttribute("href", "#") // to make a hand cursor for image map
  2815. }
  2816.  
  2817. CTrigger.prototype.AddTargetID = function( strTargetID )
  2818. {// add one target ID string to the objStrTarget
  2819.     if( typeof(strTargetID) != "string" )
  2820.         return ;
  2821.     if( typeof(this.objStrTarget[strTargetID]) != "string" )
  2822.         this.objStrTarget[strTargetID] = strTargetID;
  2823. }
  2824.  
  2825. CTrigger.prototype.OnTriggerClick = function()
  2826. {// to activate all asociated target
  2827.     var strEventType = ( (this.nCounter++)% 2 == 0 ) ? 
  2828.         "bssctrigger1" : "bssctrigger2";
  2829.         
  2830.     // to enumerate associative target element's ID string
  2831.     for( var strTargetID in this.objStrTarget ) 
  2832.         CEngine.SendEventToOneTarget( strTargetID, strEventType );
  2833. }
  2834. //End the definition of class CTrigger
  2835.  
  2836. //Begin the definition of class CTarget
  2837. function CTarget( TargetElement )
  2838. {
  2839.     // object : the target element. Never be null.
  2840.     this.eleTarget = TargetElement;
  2841.     this.objManager = new Object(); // object: the event manager
  2842.  
  2843. CTarget.nPageClickCounter = 0;// static class property.
  2844.  
  2845. CTarget.prototype.GetAgencyObject = function(str_action_type,action_setting )
  2846. {// return the action agency ( effect )object's refernece 
  2847.     switch( str_action_type )
  2848.     {
  2849.     case "show":return new CAgencyShow( this.eleTarget, true ) ;
  2850.     case "hide":return new CAgencyShow( this.eleTarget, false ) ;
  2851.  
  2852.     case "flyin" : 
  2853.         return new CAgencyFly(this.eleTarget, action_setting, true);
  2854.     case "flyout" : 
  2855.         return new CAgencyFly(this.eleTarget, action_setting, false);
  2856.     case "spiralin" : 
  2857.         return new CAgencySpiral(this.eleTarget, action_setting, true);
  2858.     case "spiralout" : 
  2859.         return new CAgencySpiral(this.eleTarget, action_setting, false);
  2860.     case "zoomin" :
  2861.         return new CAgencyZoom(this.eleTarget, action_setting, true);
  2862.     case "zoomout" : 
  2863.         return new CAgencyZoom(this.eleTarget, action_setting, false);
  2864.     case "elastic" : 
  2865.         return new CAgencyElastic(this.eleTarget, action_setting);
  2866.         
  2867.     case "fadein" : 
  2868.         return (gbBsIE4)? new CAgencyAlpha(this.eleTarget, action_setting, true) : null;
  2869.     case "fadeout" :
  2870.         return (gbBsIE4)? new CAgencyAlpha(this.eleTarget, action_setting, false) : null;
  2871.     case "rockrollstatic" :
  2872.     case "rockroll" :
  2873.         return (gbBsIE4)? new CAgencyWave(this.eleTarget, action_setting, false) : null;
  2874.  
  2875.     case "glow":
  2876.         return (gbBsIE4)? new CAgencyGlow(this.eleTarget,action_setting) : null;
  2877.     case "dropshadow":
  2878.         return (gbBsIE4)? new CAgencyDropShadow(this.eleTarget,action_setting) : null;
  2879.     case "transition" :
  2880.         return (gbBsIE4)? new CAgencyRevealTrans(this.eleTarget,action_setting) : null;
  2881.     case "blur" :
  2882.         return (gbBsIE4)? new CAgencyBlur(this.eleTarget,action_setting) : null;
  2883.  
  2884.     case "fliph" : // all these 4 do NOT need any parameters
  2885.     case "flipv" :
  2886.     case "invert":
  2887.     case "gray" :
  2888.         return (gbBsIE4)? new CAgencyChangeFilter(this.eleTarget, str_action_type) : null;
  2889.     
  2890.     case "fontchange": // the effects below change the style on the fly, so won't work in Navigator
  2891.         return (gbBsIE4)? new CAgencyFontChange(this.eleTarget,action_setting) : null;
  2892.     case "boderchange": 
  2893.     case "stylechange":
  2894.         return (gbBsIE4)? new CAgencyChangeStyle(this.eleTarget,action_setting) : null;
  2895.  
  2896.     default: return null;
  2897.     }
  2898. }
  2899.  
  2900. CTarget.prototype.SetEventManager = function( 
  2901.     one_event_type,str_action_type,action_setting,event_additional)
  2902. {// to set the event manager with specified action 
  2903.     if( typeof( one_event_type ) != "string" ||    
  2904.         typeof( str_action_type ) != "string"||
  2905.         typeof( action_setting ) != "string" )
  2906.         return false;
  2907.     if( typeof(this.objManager[one_event_type]) == "undefined" )
  2908.     {
  2909.         this.objManager[one_event_type] = new Object();
  2910.         this.objManager[one_event_type].length = 0;
  2911.     }
  2912.     
  2913.     var eventAgency = this.GetAgencyObject(str_action_type,action_setting);
  2914.     if( eventAgency != null )
  2915.     {
  2916.         var ct = this.objManager[one_event_type].length ++;
  2917.         this.objManager[one_event_type][ct] = eventAgency;
  2918.         
  2919.         if( one_event_type == "bsscpageclick" )
  2920.         {// to deal with the "number of pageclick" stuff
  2921.             if( typeof(event_additional) == "number" )
  2922.                 this.objManager[one_event_type][ct].nPageClick = event_additional;
  2923.             else // set the default number 
  2924.                 this.objManager[one_event_type][ct].nPageClick = 1;
  2925.             
  2926.             if( (typeof(this.objManager.nMinPageClickIndex) == "undefined") ||
  2927.                 (this.objManager[one_event_type][ct].nPageClick < 
  2928.                     this.objManager[one_event_type][this.objManager.nMinPageClickIndex].nPageClick) )
  2929.                 this.objManager.nMinPageClickIndex = ct;
  2930.         }
  2931.         
  2932.         //hide the object blindly,SetState function will take care of the final correct state
  2933.         if( ((one_event_type == "bsscpageclick") && 
  2934.              (this.objManager[one_event_type][ct].nPageClick == 1)) ||
  2935.             one_event_type == "bsscpageload" ||
  2936.             one_event_type == "bssctrigger1" )
  2937.             CCSSP.ShowObject( this.eleTarget, false );
  2938.         
  2939.         if( one_event_type == "bssctrigger1" || one_event_type == "bssctrigger2" )
  2940.             if( typeof( this.strTriggerEvent ) == "undefined" )
  2941.                 this.strTriggerEvent = ( one_event_type == "bssctrigger1" ) ? "bssctrigger2" : "bssctrigger1";
  2942.             
  2943.         return true;
  2944.     }
  2945.     return false;
  2946. }
  2947.  
  2948. CTarget.prototype.OnEvent = function( strBsscEvent )
  2949. {// response to the event ( bssc format )
  2950.     if( typeof(this.objManager[strBsscEvent]) == "object" )
  2951.     { // to get the event agency from the event manager
  2952.         var eventAgency = this.objManager[strBsscEvent];
  2953.         for( var i = 0; i < eventAgency.length; i++ )
  2954.         {
  2955.             if( strBsscEvent == "bsscpageclick" && 
  2956.                  eventAgency[i].nPageClick != CTarget.nPageClickCounter )
  2957.                  continue;
  2958.             else if( strBsscEvent == "bsschover" && event.type == "mouseout" )
  2959.                 eventAgency[i].EndEffect();
  2960.             else // to invoke the unified function in effect object    
  2961.                 eventAgency[i].UpdateEffect(); 
  2962.         }
  2963.     }
  2964. }
  2965.  
  2966. CTarget.prototype.SetState = function( strBsscEvent )
  2967. {
  2968.     if( typeof(this.objManager[strBsscEvent]) != "object" )
  2969.         return false;
  2970.  
  2971.     // to get the event agency from the event manager
  2972.     var eventAgency = this.objManager[strBsscEvent];
  2973.     
  2974.     if( strBsscEvent == "bsscpageclick" )
  2975.     {// we only set the initial state for the minium number of pageclick 
  2976.         eventAgency[this.objManager.nMinPageClickIndex].PrepareEffect();
  2977.         return true;
  2978.     }
  2979.     else
  2980.     {
  2981.         for( var i = 0; i < eventAgency.length; i++ )
  2982.             eventAgency[i].PrepareEffect(); // to invoke the unified function in effect object     
  2983.         if( i > 0 )
  2984.             return true;
  2985.         else
  2986.             return false;
  2987.     }
  2988. }
  2989. //End the definition of class CTarget
  2990.  
  2991. //Begin the definition of CEngine class
  2992. function CEngine(){}// all properities are going be "class" properities
  2993.  
  2994. // object : as associative array of trigger objects
  2995. CEngine.objTrigger = new Object();
  2996. // object : as associative array of target objects 
  2997. CEngine.objTarget = new Object(); 
  2998.  
  2999. // Array : each element is a CAgencyXXX animation object
  3000. CEngine.arrAnimation = new Array();
  3001. CEngine.PerformAnimation = function( nIndex )
  3002. {// animation : update effects function
  3003.     CEngine.arrAnimation[nIndex].UpdateEffect();
  3004. }
  3005.  
  3006. CEngine.AddOneTrigger = function(TriggerID,TriggerElement)
  3007. {// add one Trigger object into the trigger array
  3008.     if( typeof(TriggerID) != "string" || TriggerElement == null ||
  3009.         typeof(TriggerElement) != "object" )
  3010.         return;
  3011.     if( typeof(CEngine.objTrigger[TriggerID] ) != "object" )
  3012.         CEngine.objTrigger[TriggerID] = new CTrigger(TriggerElement);
  3013. }
  3014.     
  3015. CEngine.AddOneTarget = function(TargetID, TargetElement)
  3016. {// add one Target object into the target array
  3017.     if( typeof(TargetID) != "string" || TargetElement == null ||
  3018.         typeof(TargetElement) != "object" )
  3019.         return;
  3020.     if( typeof(CEngine.objTarget[TargetID]) != "object" )
  3021.         CEngine.objTarget[TargetID] = new CTarget( TargetElement );
  3022. }
  3023.  
  3024. CEngine.SendEventToOneTarget = function(strTargetID, strBsscEvent )
  3025. {// to activate one target object
  3026.     if( typeof(CEngine.objTarget[strTargetID]) == "object" ) 
  3027.     {
  3028.         if( strBsscEvent == "bssctrigger1" || strBsscEvent == "bssctrigger2" )
  3029.         {//now, the "bssctrigger1" and "bssctrigger2" work like a toggle
  3030.             if( strBsscEvent == CEngine.objTarget[strTargetID].strTriggerEvent )
  3031.                 strBsscEvent = (strBsscEvent == "bssctrigger1") ? "bssctrigger2" : "bssctrigger1";
  3032.             CEngine.objTarget[strTargetID].strTriggerEvent = strBsscEvent;
  3033.         }
  3034.         CEngine.objTarget[strTargetID].OnEvent( strBsscEvent );
  3035.     }
  3036. }
  3037.  
  3038. CEngine.SendEventToAllTarget = function( strBsscEvent )
  3039. { //to activate all target associative to the BSSC event
  3040.     for( var strTargetID in CEngine.objTarget ) //to enumerate all target
  3041.         CEngine.SendEventToOneTarget( strTargetID, strBsscEvent );
  3042. }
  3043.  
  3044. CEngine.SetOneTargetInitialState = function( strTargetID )
  3045. {// only invoked after ALL effects for the target have been set
  3046.     if( typeof(CEngine.objTarget[strTargetID]) == "object" ) 
  3047.     {// to get target object
  3048.         var objTarget = CEngine.objTarget[strTargetID];
  3049.         if( objTarget.SetState( "bsscpageload" ) == false )
  3050.         {
  3051.             objTarget.SetState( "bsscpageclick" );
  3052.             objTarget.SetState( "bssctrigger1" );
  3053.         }
  3054.     }
  3055. }
  3056.  
  3057. CEngine.AdjustPageClickCounter = function()
  3058. {
  3059.     var nAdjustedClickCounter = CTarget.nPageClickCounter;
  3060.     var bAdjusted = false;
  3061.     for( var strTargetID in CEngine.objTarget ) //to enumerate all target
  3062.     {// try to find the minum pageCliclConter greater than CTarget.nPageClickCounter
  3063.         var objEventPageClick = CEngine.objTarget[strTargetID].objManager.bsscpageclick;
  3064.         if( objEventPageClick != null )
  3065.         {
  3066.             for( var i = 0; i < objEventPageClick.length; i++ )
  3067.             {
  3068.                 var nOtherPageClick = objEventPageClick[i].nPageClick;
  3069.                 if( nOtherPageClick == CTarget.nPageClickCounter )
  3070.                     return;
  3071.                 if( nOtherPageClick > CTarget.nPageClickCounter )
  3072.                 {
  3073.                     if( !bAdjusted )
  3074.                     {
  3075.                         nAdjustedClickCounter = nOtherPageClick;
  3076.                         bAdjusted = true;
  3077.                     }
  3078.                     else if( nOtherPageClick < nAdjustedClickCounter )
  3079.                         nAdjustedClickCounter = nOtherPageClick;
  3080.                 }
  3081.             }
  3082.         }
  3083.     }
  3084.     CTarget.nPageClickCounter = nAdjustedClickCounter;
  3085. }
  3086.  
  3087. CEngine.OnPageLoad = function()
  3088. {     
  3089.     // first, to set all target's initial state
  3090.     for( var strTargetID in CEngine.objTarget )
  3091.         CEngine.SetOneTargetInitialState( strTargetID );
  3092.     
  3093.     // to invoke all target's onpageload handler
  3094.     CEngine.SendEventToAllTarget( "bsscpageload" );
  3095. }
  3096.  
  3097. CEngine.OnPageClick = function()
  3098. { // to invoke all target's onpageclick handler
  3099.     var src = CCSSP.GetEventElement( arguments[0] );
  3100.     if( src == null )
  3101.         return;
  3102.         
  3103.     var objClickedTrigger = null;
  3104.     for( var strTriggerID in CEngine.objTrigger )
  3105.     { // to detect which trigger is clicked
  3106.         if( CCSSP.IsDescendant( CEngine.objTrigger[strTriggerID].eleTrigger,src) )
  3107.         {
  3108.             objClickedTrigger = CEngine.objTrigger[strTriggerID];
  3109.             break;
  3110.         }
  3111.     }
  3112.     
  3113.     if( objClickedTrigger != null) // the clicked trigger found
  3114.         objClickedTrigger.OnTriggerClick();
  3115.     else // no trigger is clicked
  3116.     { // to send PageClick event to all target
  3117.         CTarget.nPageClickCounter++;
  3118.         CEngine.AdjustPageClickCounter();
  3119.         CEngine.SendEventToAllTarget( "bsscpageclick" );
  3120.     }
  3121. }    
  3122.  
  3123. CEngine.OnMouseOver = function()
  3124. { // to invoke all target's onpageload handler
  3125.     var src = CCSSP.GetEventElement( arguments[0] );
  3126.     if( src == null )
  3127.         return;
  3128.         
  3129.     var strHoveredTargetID = null;
  3130.     for( var strTargetID in CEngine.objTarget )
  3131.     { // to detect which Target is hovering on
  3132.         if( CCSSP.IsDescendant( CEngine.objTarget[strTargetID].eleTarget, src ) )
  3133.         {
  3134.             strHoveredTargetID = strTargetID;
  3135.             break;
  3136.         }
  3137.     }
  3138.     
  3139.     if( strHoveredTargetID != null ) // the hovered target found
  3140.         CEngine.SendEventToOneTarget( strHoveredTargetID, "bsschover" );
  3141. }
  3142.  
  3143. CEngine.BuildTargetObject = function(target_ID,event_type,action_type,
  3144.             action_setting, event_additional)
  3145. {// to build target object 
  3146.     // to get the target object
  3147.     if( typeof( CEngine.objTarget[target_ID] ) != "object" )
  3148.         return false;// the engine's AddOneTarget function might have failed.
  3149.     var TargetObject = CEngine.objTarget[target_ID];
  3150.     
  3151.     // to prepare the parameters for the event manager
  3152.     var arrEvent = event_type.split("|"); // to split the combined event_type string
  3153.     var arrAction = action_type.split("|");//to split the combined action_type string
  3154.     for( var trim = 0; trim < arrEvent.length; trim++ )
  3155.         arrEvent[trim] = CCSSP.TrimSpace(arrEvent[trim]);
  3156.     
  3157.     for( trim = 0; trim < arrAction.length; trim++ )
  3158.         arrAction[trim] = CCSSP.TrimSpace(arrAction[trim]);
  3159.     
  3160.     var arrSetting = new Array(); 
  3161.     if( typeof(action_setting) == "string" )
  3162.         arrSetting = action_setting.split("|");// to split the combined action_setting string
  3163.     // to calibrate the arrays
  3164.     for( var i = arrSetting.length; i < arrAction.length; i++ )
  3165.     {
  3166.         if( typeof(arrSetting[i]) != "string" )
  3167.              arrSetting[i] = "";
  3168.     }                 
  3169.  
  3170.     // to prepare for dealing with the absolute posioning element
  3171.     TargetObject.eleTarget.ABSX = CCSSP.GetObjectLeft( TargetObject.eleTarget );
  3172.     TargetObject.eleTarget.ABSY = CCSSP.GetObjectTop( TargetObject.eleTarget );
  3173.  
  3174.     if( arrEvent.length > 1 )
  3175.     {// if event is combined, it must be : "bssctrigger1 | bssctrigger2"
  3176.         if( arrAction.length != 2 )
  3177.             return false; // if event is combined, there must be 2 actions
  3178.         for( i = 0 ; i < 2; i++ )
  3179.         {
  3180.             if( TargetObject.SetEventManager(arrEvent[i], arrAction[i], 
  3181.                 arrSetting[i], event_additional) == false )
  3182.                 return false; // the event manager has not been set up
  3183.         }
  3184.     }
  3185.     else // the event_type string is not combined
  3186.     {
  3187.         for( i = 0 ; i < arrAction.length; i++ )
  3188.         {
  3189.             TargetObject.SetEventManager(event_type, arrAction[i], arrSetting[i], event_additional);
  3190.             // to validate the event manager
  3191.             if( typeof(TargetObject.objManager[event_type]) != "object" ||
  3192.                     typeof(TargetObject.objManager[event_type][i]) != "object" )
  3193.                 return false; // the event manager has not been set up
  3194.         }
  3195.     }
  3196.     return true;
  3197. }
  3198.  
  3199. CEngine.BuildTriggerObject = function(trigger_ID, target_ID)
  3200. {// to build the trigger object
  3201.     var arrTrigger = trigger_ID.split("|"); // to split the combined trigger_ID string
  3202.     for( var i = 0; i < arrTrigger.length; i ++ )
  3203.     {// to get the trigger element then add it to the trigger list
  3204.         arrTrigger[i] = CCSSP.TrimSpace( arrTrigger[i] );
  3205.         var eleTrigger = CCSSP.GetObject( arrTrigger[i] );
  3206.         if( eleTrigger == null )
  3207.             continue; // the trigger_ID string in the HTML code maybe wrong
  3208.         CEngine.AddOneTrigger( arrTrigger[i], eleTrigger );
  3209.  
  3210.         // to get the target object
  3211.         if( typeof( this.objTrigger[arrTrigger[i]] ) != "object" )
  3212.             continue;// the engine's AddOneTarget function might have failed.
  3213.         CEngine.objTrigger[arrTrigger[i]].AddTargetID( target_ID );
  3214.     }
  3215. }
  3216. //End the definition of CEngine class
  3217.  
  3218. /// Section End  - CCSSP DHTM 1 (JavaScript 1.2)
  3219.  
  3220. /// Section Begin  - CCSSP DHTM 2 (JavaScript 1.2)
  3221.  
  3222. //Begin the definition of CAgencyXXXX classes
  3223.  
  3224. //Begin of the CAgencyShow definition
  3225. function CAgencyShow( element, bIsShow )
  3226. {
  3227.     this.ele = element;
  3228.     this.bIsShow = bIsShow;
  3229. }
  3230.  
  3231. CAgencyShow.prototype.PrepareEffect = function()
  3232. {
  3233.     CCSSP.ShowObject( this.ele, !this.bIsShow );
  3234. }
  3235.  
  3236. CAgencyShow.prototype.UpdateEffect = function()
  3237. {
  3238.     CCSSP.ShowObject( this.ele, this.bIsShow );
  3239. }
  3240.  
  3241. CAgencyShow.prototype.EndEffect = function()
  3242. {
  3243.     CCSSP.ShowObject( this.ele, !this.bIsShow );
  3244. }
  3245. // End of the CAgencyShow definition
  3246.  
  3247. // Begin of CAgencyFly definition
  3248. function CAgencyFly( element, settings, bIsIn )
  3249. {
  3250.     this.ele = element;
  3251.     this.bIsIn = bIsIn;
  3252.     this.duration = 1000; // default
  3253.     this.direction = "right";
  3254.  
  3255.     var arrAllSet = settings.split(",");
  3256.     for( var i = 0; i < arrAllSet.length; i ++ )
  3257.     {// to retrieve the setting
  3258.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  3259.         var arrOneSet = arrAllSet[i].split("=");
  3260.         for( var j = 0; j < arrOneSet.length; j++ )
  3261.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  3262.         switch( arrOneSet[0] )
  3263.         {
  3264.         case "speed" : this.duration = 100000/arrOneSet[1]; break;
  3265.         case "direction" : this.direction = arrOneSet[1]; break;
  3266.         }
  3267.     }
  3268.         
  3269.     if( gbBsIE5 && this.ele.style.position != "absolute" )
  3270.         this.ele.style.position = "relative";
  3271.     this.timer = null;
  3272.     this.aniIndex = CEngine.arrAnimation.length;
  3273.     CEngine.arrAnimation[this.aniIndex] = this;
  3274. }
  3275.  
  3276. CAgencyFly.prototype.PrepareEffect = function()
  3277. {
  3278.     CCSSP.ShowObject(this.ele, !this.bIsIn );
  3279. }
  3280.  
  3281. CAgencyFly.prototype.UpdateEffect = function()
  3282. {
  3283.     if( this.timer == null )
  3284.         this.ResetParameters();
  3285.  
  3286.     var percent = ((new Date()).getTime() - this.startTime)/this.duration;
  3287.     if( percent >= 1.0 )
  3288.         this.EndEffect();
  3289.     else
  3290.     {
  3291.         var newX = this.startX*(1.0-percent) +  this.finalX*percent;
  3292.         var newY = this.startY*(1.0-percent) +  this.finalY*percent;
  3293.         CCSSP.MoveObjectTo(this.ele, newX, newY);
  3294.         if( this.timer == null )
  3295.             this.timer = setInterval("CEngine.PerformAnimation(" + this.aniIndex + ")", 20 );
  3296.     }
  3297. }
  3298.  
  3299. CAgencyFly.prototype.EndEffect = function()
  3300. {
  3301.     clearInterval( this.timer );
  3302.     this.timer = null;
  3303.  
  3304.     if( this.bIsIn ) // FlyIn
  3305.         CCSSP.MoveObjectTo(this.ele, this.finalX, this.finalY);
  3306.     else // FlyOut
  3307.         CCSSP.MoveObjectTo(this.ele, this.startX, this.startY);
  3308.     CCSSP.ShowObject(this.ele, this.bIsIn );
  3309. }
  3310.  
  3311. CAgencyFly.prototype.ResetParameters = function()
  3312. {
  3313.     this.PrepareEffect();
  3314.     CCSSP.ShowObject(this.ele, true );
  3315.  
  3316.     this.startX = 0;
  3317.     this.startY = 0;
  3318.     this.finalX = 0;
  3319.     this.finalY = 0; 
  3320.     
  3321.     var offsetLeft = CCSSP.GetObjectWindowLeft(this.ele) + this.ele.offsetWidth;
  3322.     var offsetTop = CCSSP.GetObjectWindowTop(this.ele) + this.ele.offsetHeight;
  3323.     var offsetRight = CCSSP.GetWindowRight();
  3324.     var offsetBottom = CCSSP.GetWindowBottom();
  3325.  
  3326.     if( this.bIsIn )
  3327.     { // FlyIn
  3328.         this.finalX = this.ele.ABSX;
  3329.         this.finalY = this.ele.ABSY;
  3330.  
  3331.         switch( this.direction )
  3332.         {
  3333.         case "right": this.startX = offsetRight; this.startY = this.finalY; break;
  3334.         case "left": this.startX = -offsetLeft;  this.startY = this.finalY; break;
  3335.         case "down": this.startY = offsetBottom; this.startX = this.finalX; break;
  3336.         case "up":  this.startY = -offsetTop;    this.startX = this.finalX; break;
  3337.         case "downright":
  3338.               this.startX = ( offsetBottom < offsetRight) ? offsetBottom : offsetRight;
  3339.             this.startY = this.startX;        break;
  3340.         case "upright":
  3341.               this.startX = (offsetTop < offsetRight)? offsetTop : offsetRight;
  3342.             this.startY = -this.startX;        break;
  3343.         case "upleft":
  3344.             this.startX = -((offsetTop < offsetRight)? offsetTop : offsetRight);
  3345.             this.startY = this.startX;        break;
  3346.         case "downleft":
  3347.             this.startX = -(( offsetBottom < offsetRight) ? offsetBottom : offsetRight);
  3348.             this.startY = -this.startX;     break;
  3349.         }
  3350.     }
  3351.     else
  3352.     { // FlyOut
  3353.         this.startX = this.ele.ABSX;
  3354.         this.startY = this.ele.ABSY;
  3355.  
  3356.         switch( this.direction )
  3357.         {
  3358.         case "right": this.finalX = offsetRight;  this.finalY = this.startY; break;
  3359.         case "left": this.finalX = -offsetLeft;   this.finalY = this.startY;  break;
  3360.         case "down": this.finalY = offsetBottom;  this.finalX = this.startX; break;
  3361.         case "up":  this.finalY = -offsetTop;     this.finalX = this.startX; break;
  3362.         case "downright":
  3363.               this.finalX = ( offsetBottom < offsetRight) ? offsetBottom : offsetRight;
  3364.             this.finalY = this.finalX;        break;
  3365.         case "upright":
  3366.               this.finalX = (offsetTop < offsetRight)? offsetTop : offsetRight;
  3367.             this.finalY = -this.finalX;        break;
  3368.         case "upleft":
  3369.             this.finalX = -((offsetTop < offsetRight)? offsetTop : offsetRight);
  3370.             this.finalY = this.finalX;        break;
  3371.         case "downleft":
  3372.             this.finalX = -(( offsetBottom < offsetRight) ? offsetBottom : offsetRight);
  3373.             this.finalY = -this.finalX;     break;
  3374.         }
  3375.     }
  3376.     CCSSP.MoveObjectTo(this.ele, this.startX, this.startY);
  3377.     this.startTime = (new Date()).getTime();
  3378. }
  3379. // End of the CAgencyFly definition
  3380.  
  3381. // Begin of CAgencySpiral
  3382. function CAgencySpiral( element, settings, bIsIn )
  3383. {
  3384.     this.ele = element;
  3385.     this.bIsIn = bIsIn;
  3386.     this.duration = 1000; // default
  3387.  
  3388.     var arrAllSet = settings.split(",");
  3389.     for( var i = 0; i < arrAllSet.length; i ++ )
  3390.     {// to retrieve the setting
  3391.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  3392.         var arrOneSet = arrAllSet[i].split("=");
  3393.         for( var j = 0; j < arrOneSet.length; j++ )
  3394.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  3395.         switch( arrOneSet[0] )
  3396.         {
  3397.         case "speed" : this.duration = 100000/arrOneSet[1]; break;
  3398.         }
  3399.     }
  3400.  
  3401.     if( gbBsIE5 && this.ele.style.position != "absolute" )
  3402.         this.ele.style.position = "relative";
  3403.     this.timer = null;
  3404.     this.aniIndex = CEngine.arrAnimation.length;
  3405.     CEngine.arrAnimation[this.aniIndex] = this;
  3406. }
  3407.  
  3408. CAgencySpiral.prototype.PrepareEffect = function()
  3409. {
  3410.     CCSSP.ShowObject(this.ele, !this.bIsIn );
  3411. }
  3412.  
  3413. CAgencySpiral.prototype.UpdateEffect = function()
  3414. {
  3415.     if( this.timer == null )
  3416.         this.ResetParameters();
  3417.  
  3418.     var percent = ((new Date()).getTime() - this.startTime)/this.duration;
  3419.     if( percent >= 1.0 )
  3420.         this.EndEffect();
  3421.     else
  3422.     {
  3423.         var rf = (this.bIsIn)? (1.0 - percent) : percent; 
  3424.         var t = (1.0-rf) * 4.0 * Math.PI
  3425.         var rxP = (this.bIsIn)? this.startX : this.finalX; 
  3426.         var ryP = (this.bIsIn)? this.startY : this.finalY; 
  3427.         var rx = (Math.abs(rxP) < 200) ? Math.abs(rxP) : 200;
  3428.         var ry = (Math.abs(ryP) < 200) ? Math.abs(ryP) : 200;
  3429.  
  3430.         var newX = Math.ceil(-rf*Math.cos(t)*rx) + this.ele.ABSX;
  3431.         var newY = Math.ceil(-rf*Math.sin(t)*ry) + this.ele.ABSY;
  3432.         CCSSP.MoveObjectTo(this.ele, newX, newY);
  3433.         if( this.timer == null )
  3434.             this.timer = setInterval("CEngine.PerformAnimation(" + this.aniIndex + ")", 20 );
  3435.     }
  3436. }
  3437.  
  3438. CAgencySpiral.prototype.EndEffect = function()
  3439. {
  3440.     clearInterval( this.timer );
  3441.     this.timer = null;
  3442.     
  3443.     if( this.bIsIn ) // In
  3444.         CCSSP.MoveObjectTo(this.ele, this.finalX, this.finalY);
  3445.     else // Out
  3446.         CCSSP.MoveObjectTo(this.ele, this.startX, this.startY);
  3447.     CCSSP.ShowObject(this.ele, this.bIsIn );
  3448. }
  3449.  
  3450. CAgencySpiral.prototype.ResetParameters = function()
  3451. {
  3452.     this.PrepareEffect();
  3453.     CCSSP.ShowObject(this.ele, true );
  3454.     this.startX = (this.bIsIn)? CCSSP.GetWindowRight() : this.ele.ABSX;
  3455.     this.startY = (this.bIsIn)? CCSSP.GetWindowBottom() : this.ele.ABSY;
  3456.     this.finalX = (this.bIsIn)? this.ele.ABSX : CCSSP.GetWindowRight();
  3457.     this.finalY = (this.bIsIn)? this.ele.ABSY : CCSSP.GetWindowBottom(); 
  3458.     
  3459.     CCSSP.MoveObjectTo(this.ele, this.startX, this.startY);
  3460.     this.startTime = (new Date()).getTime();
  3461. }
  3462. // End of CAgencySpiral
  3463.  
  3464. // Begin of CAgencyElastic
  3465. function CAgencyElastic( element, settings)
  3466. {
  3467.     this.ele = element;
  3468.     this.duration = 1000; // default
  3469.     this.direction = "right";
  3470.  
  3471.     var arrAllSet = settings.split(",");
  3472.     for( var i = 0; i < arrAllSet.length; i ++ )
  3473.     {// to retrieve the setting
  3474.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  3475.         var arrOneSet = arrAllSet[i].split("=");
  3476.         for( var j = 0; j < arrOneSet.length; j++ )
  3477.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  3478.         switch( arrOneSet[0] )
  3479.         {
  3480.         case "speed" : this.duration = 100000/arrOneSet[1]; break;
  3481.         case "direction" : this.direction = arrOneSet[1]; break;
  3482.         }
  3483.     }
  3484.         
  3485.     if( gbBsIE5 && this.ele.style.position != "absolute" )
  3486.         this.ele.style.position = "relative";
  3487.     this.timer = null;
  3488.     this.aniIndex = CEngine.arrAnimation.length;
  3489.     CEngine.arrAnimation[this.aniIndex] = this;
  3490. }
  3491.  
  3492. CAgencyElastic.prototype.PrepareEffect = function()
  3493. {
  3494.     CCSSP.ShowObject(this.ele, false );
  3495. }
  3496.  
  3497. CAgencyElastic.prototype.UpdateEffect = function()
  3498. {
  3499.     if( this.timer == null )
  3500.         this.ResetParameters();
  3501.  
  3502.     var percent = ((new Date()).getTime() - this.startTime)/this.duration;
  3503.     if( percent >= 1.0 )
  3504.         this.EndEffect();
  3505.     else
  3506.     {
  3507.         var newX = this.startX;
  3508.         var newY = this.startY;
  3509.         var rf = Math.exp(-percent*3);
  3510.         var t = percent * 1.5 * Math.PI
  3511.         var rx = (Math.abs(this.startX) > Math.abs(this.startY)) ? this.startX : this.startY;
  3512.         switch (this.direction )
  3513.         {
  3514.         case "left":   
  3515.         case "right" : newX = rf*Math.cos(t)*rx + this.ele.ABSX; break;
  3516.         case "up":       
  3517.         case "down" :  newY = rf*Math.cos(t)*rx + this.ele.ABSX; break;
  3518.         }
  3519.         CCSSP.MoveObjectTo(this.ele, newX, newY);
  3520.         if( this.timer == null )
  3521.             this.timer = setInterval("CEngine.PerformAnimation(" + this.aniIndex + ")", 20 );
  3522.     }
  3523. }
  3524.  
  3525. CAgencyElastic.prototype.EndEffect = function()
  3526. {
  3527.     CCSSP.MoveObjectTo(this.ele, this.finalX, this.finalY);
  3528.     clearInterval( this.timer );
  3529.     this.timer = null;
  3530. }
  3531.  
  3532. CAgencyElastic.prototype.ResetParameters = function()
  3533. {
  3534.     CCSSP.ShowObject(this.ele, true );
  3535.     this.startX = this.ele.ABSX;
  3536.     this.finalX = this.ele.ABSX;
  3537.     this.startY = this.ele.ABSY;
  3538.     this.finalY = this.ele.ABSY;
  3539.     
  3540.     switch (this.direction)
  3541.     { 
  3542.     case "left":  this.startX = -this.ele.offsetWidth; break;
  3543.     case "right": this.startX = this.ele.offsetWidth;  break;
  3544.     case "up":    this.startY = -this.ele.offsetHeight;break;
  3545.     case "down":  this.startY = this.ele.offsetHeight; break;
  3546.     }
  3547.     CCSSP.MoveObjectTo(this.ele, this.startX, this.startY);
  3548.     this.startTime = (new Date()).getTime();
  3549. }
  3550. // End of CAgencyElastic
  3551.  
  3552. // Begin of CAgencyZoom
  3553. function CAgencyZoom( element, settings, bIsIn)
  3554. {
  3555.     this.ele = element;
  3556.     this.duration = 1000; // default
  3557.     
  3558.     var arrAllSet = settings.split(",");
  3559.     for( var i = 0; i < arrAllSet.length; i ++ )
  3560.     {// to retrieve the setting
  3561.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  3562.         var arrOneSet = arrAllSet[i].split("=");
  3563.         for( var j = 0; j < arrOneSet.length; j++ )
  3564.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  3565.         switch( arrOneSet[0] )
  3566.         {
  3567.         case "speed" : this.duration = 100000/arrOneSet[1]; break;
  3568.         }
  3569.     }
  3570.  
  3571.     this.bIsIn = bIsIn;
  3572.     this.timer = null;
  3573.     this.aniIndex = CEngine.arrAnimation.length;
  3574.     CEngine.arrAnimation[this.aniIndex] = this;
  3575. }
  3576.  
  3577. CAgencyZoom.prototype.PrepareEffect = function()
  3578. {
  3579.     CCSSP.ShowObject(this.ele, false);
  3580. }
  3581.  
  3582. CAgencyZoom.prototype.UpdateEffect = function()
  3583. {
  3584.     if( this.timer == null )
  3585.         this.ResetParameters();
  3586.  
  3587.     var percent = ((new Date()).getTime() - this.startTime)/this.duration;
  3588.     if( percent >= 1.0 )
  3589.         this.EndEffect();
  3590.     else
  3591.     {
  3592.         var nFactorIn = Math.ceil(50+50*percent);
  3593.         var nFactorOut = Math.ceil(100+200*(1-percent));
  3594.         var AlterFontsize = ((this.bIsIn)? nFactorIn : nFactorOut) + "%";
  3595.         var AlterFactor = ((this.bIsIn)? nFactorIn : nFactorOut) / 100;
  3596.         
  3597.         this.UpdateEffectAllChildren(this.ele, AlterFontsize, AlterFactor);
  3598.         for(var index = 0; index < this.ele.all.length; index++)
  3599.             this.UpdateEffectAllChildren(this.ele.all[index], AlterFontsize, AlterFactor);
  3600.             
  3601.         if( this.timer == null )
  3602.             this.timer = setInterval("CEngine.PerformAnimation(" + this.aniIndex + ")", 20 );
  3603.     }
  3604. }
  3605.  
  3606. CAgencyZoom.prototype.UpdateEffectAllChildren = function(child, FontSize, Factor)
  3607. {
  3608.     if( CCSSP.IsTextTag(child) )
  3609.         child.style.fontSize = FontSize;
  3610.     else
  3611.     {
  3612.         if( typeof(child.orgWidth) == "number" )
  3613.             child.style.width = Factor * child.orgWidth;
  3614.         if( typeof(child.orgHeight) == "number" )
  3615.             child.style.height = Factor * child.orgHeight;
  3616.     }
  3617. }
  3618.  
  3619. CAgencyZoom.prototype.EndEffect = function()
  3620. {
  3621.     this.EndEffectAllChildren(this.ele);
  3622.     for(var index = 0; index < this.ele.all.length; index++)
  3623.         this.EndEffectAllChildren(this.ele.all[index]);
  3624.     
  3625.     clearInterval( this.timer );
  3626.     this.timer = null;
  3627. }
  3628.  
  3629. CAgencyZoom.prototype.EndEffectAllChildren = function( child )
  3630. {    
  3631.     if( CCSSP.IsTextTag(child) )
  3632.         child.style.fontSize = child.orgFontSize;
  3633.     else
  3634.     {
  3635.         if( typeof(child.intactWidth) != "undefined" )
  3636.         {
  3637.             child.width = child.intactWidth;
  3638.             child.height = child.intactHeight;
  3639.         }
  3640.         else if( typeof(child.style.intactPixelWidth) != "undefined" )
  3641.         {
  3642.             child.style.pixelWidth = child.style.intactPixelWidth;
  3643.             child.style.pixelHeight = child.style.intactPixelHeight;
  3644.         }
  3645.     }
  3646. }
  3647.  
  3648. CAgencyZoom.prototype.ResetParameters = function()
  3649. {
  3650.     this.PrepareEffect();
  3651.     this.ResetParametersAllChildren( this.ele );
  3652.     for(var index = 0; index < this.ele.all.length; index++)
  3653.         this.ResetParametersAllChildren(this.ele.all[index]);
  3654.         
  3655.     this.startTime = (new Date()).getTime();
  3656. }
  3657.  
  3658. CAgencyZoom.prototype.ResetParametersAllChildren = function( child )
  3659. {
  3660.     CCSSP.ShowObject(child, true );
  3661.     if( (child.tagName == "DIV") && (getParentNode(child).tagName == "TD") )
  3662.         child.width = "100%";// if the div is inside a cell of table, we need the this hack
  3663.     
  3664.     if( CCSSP.IsTextTag(child) )
  3665.         child.orgFontSize = child.style.fontSize;
  3666.     else
  3667.     {
  3668.         if( child.width > "" || child.height > "" )
  3669.         {
  3670.             child.orgWidth = child.intactWidth = child.width;
  3671.             child.orgHeight = child.intactHeight = child.height;
  3672.         }
  3673.         else if( ( typeof(child.orgWidth) != "number" ) && (typeof(child.orgHeight) != "number") )
  3674.         {
  3675.             child.orgWidth = child.style.intactPixelWidth = child.style.pixelWidth;
  3676.             child.orgHeight = child.style.intactPixelHeight = child.style.pixelHeight;
  3677.         }
  3678.     }
  3679. }
  3680. // End of CAgencyZoom
  3681.  
  3682. //// the following effects will use IE's exclusive "filter" function ////
  3683. // Begin of CAgencyAlpha definition
  3684. function CAgencyAlpha( element, settings, bIsIn )
  3685. {// because of "visual filter" style, this won't work in Navigator
  3686.     this.ele = element;
  3687.     this.bIsIn = bIsIn;
  3688.  
  3689.     // to set the default value
  3690.     this.startOpacity = (this.bIsIn) ? 0 : 100;
  3691.     this.endOpacity = (this.bIsIn) ? 100 : 0;
  3692.     
  3693.     this.duration = 1000; // default
  3694.     
  3695.     var arrAllSet = settings.split(",");
  3696.     for( var i = 0; i < arrAllSet.length; i ++ )
  3697.     {// to retrieve the setting
  3698.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  3699.         var arrOneSet = arrAllSet[i].split("=");
  3700.         for( var j = 0; j < arrOneSet.length; j++ )
  3701.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  3702.         switch( arrOneSet[0] )
  3703.         {
  3704.         case "speed" : this.duration = 100000/arrOneSet[1]; break;
  3705.         }
  3706.     }
  3707.     
  3708.     this.timer = null;
  3709.     this.aniIndex = CEngine.arrAnimation.length;
  3710.     CEngine.arrAnimation[this.aniIndex] = this;
  3711. }
  3712.  
  3713. CAgencyAlpha.prototype.PrepareEffect = function()
  3714. {// to set the visual filter function
  3715.     // the visual filter ONLY work when set by "Width and Height" or
  3716.     // absolute position for DIV, SPAN and normal tag ( such as p )
  3717.     // but, "absolute" cause the following elements overlap, so:
  3718.     CCSSP.PrepareFilter( this.ele );
  3719.     CCSSP.ShowObject(this.ele, !this.bIsIn );
  3720. }
  3721.  
  3722. CAgencyAlpha.prototype.UpdateEffect = function()
  3723. {// to set the visual filter function
  3724.     if( this.timer == null )
  3725.         this.ResetParameters();
  3726.     if( typeof(this.ele.filters.alpha) != "object" )
  3727.     {
  3728.         this.EndEffect();
  3729.         return;
  3730.     }
  3731.  
  3732.     var percent = ((new Date()).getTime() - this.startTime)/this.duration;
  3733.     if( percent >= 1.0 )
  3734.         this.EndEffect();
  3735.     else if( typeof(this.ele.filters.alpha) == "object" )
  3736.     {
  3737.         this.ele.filters.alpha.opacity = this.startOpacity*(1.0-percent) + this.endOpacity*percent;
  3738.         if( this.timer == null )
  3739.             this.timer = setInterval("CEngine.PerformAnimation(" + this.aniIndex + ")", 20 );
  3740.     }
  3741. }
  3742.  
  3743. CAgencyAlpha.prototype.EndEffect = function()
  3744. {// to remove the visual filter function
  3745.     clearInterval( this.timer );
  3746.     this.timer = null;
  3747.     this.ele.style.filter = "";
  3748.     CCSSP.ShowObject(this.ele, this.bIsIn );
  3749. }
  3750.  
  3751. CAgencyAlpha.prototype.ResetParameters = function()
  3752. {
  3753.     this.PrepareEffect();
  3754.     CCSSP.ShowObject(this.ele, true );
  3755.     this.ele.style.filter = "alpha(opacity=" + this.startOpacity + ")";
  3756.     this.startTime = (new Date()).getTime();
  3757. }
  3758. // End of the CAgencyAlpha definition
  3759.  
  3760. // Begin of CAgencyWave definition
  3761. function CAgencyWave( element, settings )
  3762. {// because of "visual filter" style, this won't work in Navigator
  3763.     this.ele = element;
  3764.  
  3765.     this.duration = 0; // default
  3766.     this.strength = 10;
  3767.     this.freq = 1;
  3768.     this.lightstrength = 1;
  3769.     
  3770.     var arrAllSet = settings.split(",");
  3771.     for( var i = 0; i < arrAllSet.length; i ++ )
  3772.     {// to retrieve the setting
  3773.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  3774.         var arrOneSet = arrAllSet[i].split("=");
  3775.         for( var j = 0; j < arrOneSet.length; j++ )
  3776.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  3777.         switch( arrOneSet[0] )
  3778.         {
  3779.         case "duration" : this.duration = 100000/arrOneSet[1]; break;
  3780.         case "strength" : this.strength = arrOneSet[1]; break;
  3781.         case "freq" : this.freq = arrOneSet[1]; break;
  3782.         case "lightstrength" : this.lightstrength = arrOneSet[1]; break;
  3783.         }
  3784.     }
  3785.  
  3786.     this.timer = null;
  3787.     this.aniIndex = CEngine.arrAnimation.length;
  3788.     CEngine.arrAnimation[this.aniIndex] = this;
  3789. }
  3790.  
  3791. CAgencyWave.prototype.PrepareEffect = function()
  3792. {// to set the visual filter function
  3793.     CCSSP.PrepareFilter(this.ele);
  3794.  
  3795.     CCSSP.ShowObject(this.ele, true );
  3796. }
  3797.  
  3798. CAgencyWave.prototype.UpdateEffect = function()
  3799. {// to set the visual filter function
  3800.     if( this.timer == null )
  3801.         this.ResetParameters();
  3802.     if( typeof(this.ele.filters.wave) != "object" )
  3803.     {
  3804.         this.EndEffect();
  3805.         return;
  3806.     }
  3807.  
  3808.     if( this.duration > 0 )
  3809.     {
  3810.         var percent = ((new Date()).getTime() - this.startTime)/this.duration;
  3811.         if( percent >= 1.0 )
  3812.         {
  3813.             this.EndEffect();
  3814.             return;
  3815.         }
  3816.     }
  3817.     
  3818.     this.ele.filters.wave.phase += 5;
  3819.     this.ele.filters.wave.phase %= 100;
  3820.     if( this.timer == null )
  3821.         this.timer = setInterval("CEngine.PerformAnimation(" + this.aniIndex + ")", 50 );
  3822. }
  3823.  
  3824. CAgencyWave.prototype.EndEffect = function()
  3825. {// to remove the visual filter function
  3826.     this.ele.style.filter = "";
  3827.     clearInterval( this.timer );
  3828.     this.timer = null;
  3829. }
  3830.  
  3831. CAgencyWave.prototype.ResetParameters = function()
  3832. {
  3833.     this.PrepareEffect();
  3834.     this.ele.style.filter = "wave(strength=" + this.strength + ",freq=" + 
  3835.      this.freq +", lightstrength=" + this.lightstrength +",phase=0);";
  3836.     this.startTime = (new Date()).getTime();
  3837. }
  3838. // End of the CAgencyWave definition
  3839.  
  3840. // Begin of CAgencyGlow definition
  3841. function CAgencyGlow( element, settings )
  3842. {// because of "visual filter" style, this won't work in Navigator
  3843.     this.ele = element;
  3844.  
  3845.     // to set the default value
  3846.     this.glowColor = "green";
  3847.     this.glowStrength = "3";
  3848.     
  3849.     var arrAllSet = settings.split(",");
  3850.     for( var i = 0; i < arrAllSet.length; i ++ )
  3851.     {
  3852.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  3853.         var arrOneSet = arrAllSet[i].split("=");
  3854.         for( var j = 0; j < arrOneSet.length; j++ )
  3855.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  3856.         switch( arrOneSet[0] )
  3857.         {
  3858.         case "color" : this.glowColor = arrOneSet[1]; break;
  3859.         case "strength" : this.glowStrength = arrOneSet[1]; break;
  3860.         }
  3861.     }
  3862. }
  3863.  
  3864. CAgencyGlow.prototype.PrepareEffect = function()
  3865. {
  3866.     CCSSP.PrepareFilter(this.ele);
  3867.     CCSSP.ShowObject(this.ele, true );
  3868.     if( this.ele.style.backgroundColor != "" )
  3869.     {//style.backgroundColor somehow stop the visual filter
  3870.         this.ele.intactBackgroundColor = this.ele.style.backgroundColor;
  3871.         this.ele.style.backgroundColor = "";
  3872.     }
  3873. }
  3874.  
  3875. CAgencyGlow.prototype.UpdateEffect = function()
  3876. {// to set the visual filter function
  3877.     this.PrepareEffect();
  3878.     this.ele.style.filter = "glow(Color=" + this.glowColor + ", Strength=" + 
  3879.         this.glowStrength + ", enabled=true" +")";
  3880. }
  3881.  
  3882. CAgencyGlow.prototype.EndEffect = function()
  3883. {// to remove the visual filter function
  3884.     this.ele.style.filter = "";
  3885.     if( typeof(this.ele.intactBackgroundColor) != "undefined" )
  3886.         this.ele.style.backgroundColor = this.ele.intactBackgroundColor;
  3887. }
  3888. // End of the CAgencyGlow definition
  3889.  
  3890. // Begin of CAgencyDropShadow definition
  3891. function CAgencyDropShadow( element, settings )
  3892. {// because of "visual filter" style, this won't work in Navigator
  3893.     this.ele = element;
  3894.  
  3895.     // to set the default value
  3896.     this.shadowColor = "black"; 
  3897.     this.shadowOffx = "1";
  3898.     this.shadowOffy = "1";
  3899.     
  3900.     var arrAllSet = settings.split(",");
  3901.     for( var i = 0; i < arrAllSet.length; i ++ )
  3902.     {
  3903.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  3904.         var arrOneSet = arrAllSet[i].split("=");
  3905.         for( var j = 0; j < arrOneSet.length; j++ )
  3906.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  3907.         switch( arrOneSet[0] )
  3908.         {
  3909.         case "color" : this.shadowColor = arrOneSet[1]; break;
  3910.         case "offx" : this.shadowOffx = arrOneSet[1]; break;
  3911.         case "offy" : this.shadowOffy = arrOneSet[1]; break;
  3912.         }
  3913.     }
  3914. }
  3915.  
  3916. CAgencyDropShadow.prototype.PrepareEffect = function()
  3917. {
  3918.     CCSSP.PrepareFilter(this.ele);
  3919.     CCSSP.ShowObject(this.ele, true );
  3920.     
  3921.     if( this.ele.style.backgroundColor != "" )
  3922.     {//style.backgroundColor somehow stop the visual filter
  3923.         this.ele.intactBackgroundColor = this.ele.style.backgroundColor;
  3924.         this.ele.style.backgroundColor = "";
  3925.     }
  3926. }
  3927.  
  3928. CAgencyDropShadow.prototype.UpdateEffect = function()
  3929. {// to set the visual filter function
  3930.     this.PrepareEffect();
  3931.     this.ele.style.filter = "dropshadow(color=" + this.shadowColor + ", offx=" + 
  3932.         this.shadowOffx + ", offy=" + this.shadowOffy + ")";
  3933. }
  3934.  
  3935. CAgencyDropShadow.prototype.EndEffect = function()
  3936. {// to remove the visual filter function
  3937.     this.ele.style.filter = "";
  3938.     if( typeof(this.ele.intactBackgroundColor) != "undefined" )
  3939.         this.ele.style.backgroundColor = this.ele.intactBackgroundColor;
  3940. }
  3941. // End of the CAgencyDropShadow definition
  3942.  
  3943. // Begin of CAgencyRevealTrans definition
  3944. function CAgencyRevealTrans( element, settings )
  3945. {// because of "visual filter" style, this won't work in Navigator
  3946.     this.ele = element;
  3947.  
  3948.     // to set the default value
  3949.     this.duration = 1.0; //The value is specified in seconds.milliseconds format (0.0000).
  3950.     this.transition = 0;
  3951.     
  3952.     var arrAllSet = settings.split(",");
  3953.     for( var i = 0; i < arrAllSet.length; i ++ )
  3954.     {
  3955.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  3956.         var arrOneSet = arrAllSet[i].split("=");
  3957.         for( var j = 0; j < arrOneSet.length; j++ )
  3958.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  3959.         switch( arrOneSet[0] )
  3960.         {
  3961.         case "type" : this.transition = arrOneSet[1]; break;
  3962.         case "duration" : this.duration = 100/arrOneSet[1];    break;
  3963.         }
  3964.     }
  3965. }
  3966.  
  3967. CAgencyRevealTrans.prototype.PrepareEffect = function()
  3968. {
  3969.     CCSSP.PrepareFilter(this.ele);
  3970.     CCSSP.ShowObject( this.ele, false);
  3971. }
  3972.  
  3973. CAgencyRevealTrans.prototype.UpdateEffect = function()
  3974. {// to set the visual filter function
  3975.     if( typeof( this.ele.filters.RevealTrans ) == "object" )
  3976.     {
  3977.         if( this.ele.filters.RevealTrans.status == 2 )
  3978.             this.ele.filters.RevealTrans.stop();  
  3979.     }
  3980.  
  3981.     this.PrepareEffect();
  3982.     
  3983.     this.ele.style.filter = "RevealTrans(duration=" + this.duration + 
  3984.         ", transition=" + this.transition + ")";
  3985.     
  3986.     if( typeof( this.ele.filters.RevealTrans ) == "object" )
  3987.     {
  3988.         this.ele.filters.RevealTrans.apply();
  3989.         CCSSP.ShowObject( this.ele, true);
  3990.         this.ele.filters.RevealTrans.play();  
  3991.     }
  3992.     else
  3993.         CCSSP.ShowObject( this.ele, true);
  3994. }
  3995.  
  3996. CAgencyRevealTrans.prototype.EndEffect = function()
  3997. {
  3998.     if( typeof( this.ele.filters.RevealTrans ) == "object" )
  3999.         this.ele.filters.RevealTrans.stop();  
  4000.     this.ele.style.filter = "";
  4001. }
  4002. // End of the CAgencyRevealTrans definition
  4003.  
  4004. // Begin of CAgencyBlur definition
  4005. function CAgencyBlur( element, settings )
  4006. {// because of "visual filter" style, this won't work in Navigator
  4007.     this.ele = element;
  4008.  
  4009.     // to set the default value
  4010.     this.strength = "5";
  4011.     this.direction = "90";
  4012.     
  4013.     var arrAllSet = settings.split(",");
  4014.     for( var i = 0; i < arrAllSet.length; i ++ )
  4015.     {
  4016.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  4017.         var arrOneSet = arrAllSet[i].split("=");
  4018.         for( var j = 0; j < arrOneSet.length; j++ )
  4019.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  4020.         switch( arrOneSet[0] )
  4021.         {
  4022.         case "strength" : this.strength = arrOneSet[1]; break;
  4023.         case "direction" : this.direction = arrOneSet[1]; break;
  4024.         }
  4025.     }
  4026. }
  4027.  
  4028. CAgencyBlur.prototype.PrepareEffect = function()
  4029. {
  4030.     CCSSP.PrepareFilter(this.ele);
  4031.     CCSSP.ShowObject(this.ele, true );
  4032. }
  4033.  
  4034. CAgencyBlur.prototype.UpdateEffect = function()
  4035. {// to set the visual filter function
  4036.     CCSSP.PrepareFilter(this.ele);
  4037.     this.ele.style.filter = "blur(strength=" + this.strength + 
  4038.         ", direction=" + this.direction + ")";
  4039. }
  4040.  
  4041. CAgencyBlur.prototype.EndEffect = function()
  4042. {// to remove the visual filter function
  4043.     this.ele.style.filter = "";
  4044. }
  4045. // End of the CAgencyBlur definition
  4046.  
  4047. // Begin of CAgencyChangeFilter definition
  4048. function CAgencyChangeFilter( element, settings ) // flipH, flipV, invert, grey,
  4049. {// because of "visual filter" style, this won't work in Navigator
  4050.     this.ele = element;
  4051.  
  4052.     // to set the default value
  4053.     this.filterFunction = settings;
  4054. }
  4055.  
  4056. CAgencyChangeFilter.prototype.PrepareEffect = function()
  4057. {
  4058.     CCSSP.PrepareFilter(this.ele);
  4059.     CCSSP.ShowObject(this.ele, true );
  4060. }
  4061.  
  4062. CAgencyChangeFilter.prototype.UpdateEffect = function()
  4063. {// to set the visual filter function
  4064.     CCSSP.PrepareFilter(this.ele);
  4065.     this.ele.style.filter = this.filterFunction;
  4066. }
  4067.  
  4068. CAgencyChangeFilter.prototype.EndEffect = function()
  4069. {// to remove the visual filter function
  4070.     this.ele.style.filter = "";
  4071. }
  4072. // End of the CAgencyChangeFilter definition
  4073.  
  4074. // The effects below change the style on the fly, so they won't work in Navigator
  4075.  
  4076. // Begin of CAgencyFontChange definition, 
  4077. function CAgencyFontChange( element, settings )
  4078. {//this class can be replace by CAgencyChangeStyle,provided the "settings" is standard CSS string.
  4079.     this.ele = element;
  4080.     
  4081.     // to retrieve the original font style
  4082.     this.RetrieveOldFont( this.ele );
  4083.     
  4084.     // to set the default font to change
  4085.     this.newfontFamily = this.ele.oldFontFamily;
  4086.     this.newfColor = this.ele.oldColor;
  4087.     this.newtextDecoration = this.ele.oldTextDecoration;
  4088.     this.newfontWeight = this.ele.oldFontWeight;
  4089.     this.newfontStyle = this.ele.oldFontStyle;
  4090.     this.newfontSize = this.ele.oldFontSize;
  4091.     this.newBackgroundColor = this.ele.oldBackgroundColor;
  4092.     
  4093.     var arrAllSet = settings.split(",");
  4094.     for( var i = 0; i < arrAllSet.length; i ++ )
  4095.     {// to retrieve the setting
  4096.         arrAllSet[i] = CCSSP.TrimSpace(arrAllSet[i]);
  4097.         var arrOneSet = arrAllSet[i].split("=");
  4098.         for( var j = 0; j < arrOneSet.length; j++ )
  4099.             arrOneSet[j] = CCSSP.TrimSpace(arrOneSet[j]);
  4100.         switch( arrOneSet[0] )
  4101.         {
  4102.         case "font-family" : this.newfontFamily = arrOneSet[1]; break;
  4103.         case "color" : this.newfColor = arrOneSet[1]; break;
  4104.         case "underline" : this.newtextDecoration = (arrOneSet[1]=="on")? "underline" : "none"; break;
  4105.         case "bold" : this.newfontWeight = (arrOneSet[1]=="on")? "bold" : "normal"; break;
  4106.         case "italic" : this.newfontStyle = (arrOneSet[1]=="on")? "italic" : "normal"; break;
  4107.         case "size" : this.newfontSize = arrOneSet[1]; break;
  4108.         case "background-color" : this.newBackgroundColor = arrOneSet[1]; break;
  4109.         }
  4110.     }
  4111. }
  4112.  
  4113. CAgencyFontChange.prototype.RetrieveOldFont = function(objChild)
  4114. {
  4115.     if( typeof(objChild.oldFontFamily) == "undefined" )
  4116.         objChild.oldFontFamily = objChild.style.fontFamily;
  4117.     if( typeof(objChild.oldColor) == "undefined" )
  4118.         objChild.oldColor = objChild.style.color;
  4119.     if( typeof(objChild.oldTextDecoration) == "undefined" )
  4120.         objChild.oldTextDecoration = objChild.style.textDecoration;
  4121.     if( typeof(objChild.oldFontWeight) == "undefined" )
  4122.         objChild.oldFontWeight = objChild.style.fontWeight;
  4123.     if( typeof(objChild.oldFontStyle) == "undefined" )
  4124.         objChild.oldFontStyle = objChild.style.fontStyle;
  4125.     if( typeof(objChild.oldFontSize) == "undefined" )
  4126.         objChild.oldFontSize = objChild.style.fontSize;
  4127.     if( typeof(objChild.oldBackgroundColor) == "undefined" )
  4128.         objChild.oldBackgroundColor = objChild.style.backgroundColor;
  4129. }
  4130.  
  4131. CAgencyFontChange.prototype.PrepareEffect = function()
  4132. {
  4133.     // as for expanding text, the child is created after the constructor called
  4134.     for(var index = 0; index < this.ele.all.length; index++)
  4135.         this.RetrieveOldFont(this.ele.all[index]);
  4136.     CCSSP.ShowObject(this.ele, true );
  4137. }
  4138.  
  4139. CAgencyFontChange.prototype.UpdateEffect = function()
  4140. {// to change the font
  4141.     this.PrepareEffect();
  4142.     this.UpdateEffectAllChildren( this.ele );
  4143.     for( var index = 0; index < this.ele.all.length; index++)
  4144.         this.UpdateEffectAllChildren(this.ele.all[index]);
  4145. }
  4146.  
  4147. CAgencyFontChange.prototype.UpdateEffectAllChildren = function(objChild)
  4148. {
  4149.     objChild.style.fontFamily = this.newfontFamily;
  4150.     objChild.style.color = this.newfColor;
  4151.     objChild.style.textDecoration = this.newtextDecoration;
  4152.     objChild.style.fontWeight = this.newfontWeight;
  4153.     objChild.style.fontStyle = this.newfontStyle;
  4154.     objChild.style.fontSize = this.newfontSize;
  4155.     objChild.style.backgroundColor = this.newBackgroundColor;
  4156. }
  4157.  
  4158. CAgencyFontChange.prototype.EndEffect = function()
  4159. {// to reinstate the original font style
  4160.     this.EndEffectAllChildren( this.ele );
  4161.     for( var index = 0; index < this.ele.all.length; index++)
  4162.         this.EndEffectAllChildren(this.ele.all[index]);
  4163. }
  4164.  
  4165. CAgencyFontChange.prototype.EndEffectAllChildren = function( objChild )
  4166. {
  4167.     if( typeof(objChild.oldFontFamily) != "undefined" )
  4168.         objChild.style.fontFamily = objChild.oldFontFamily;
  4169.     if( typeof(objChild.oldColor) != "undefined" )
  4170.         objChild.style.color = objChild.oldColor;
  4171.     if( typeof(objChild.oldFontWeight) != "undefined" )
  4172.         objChild.style.fontWeight = objChild.oldFontWeight;
  4173.     if( typeof(objChild.oldFontStyle) != "undefined" )
  4174.         objChild.style.fontStyle = objChild.oldFontStyle;
  4175.     if( typeof(objChild.oldFontSize) != "undefined" )
  4176.         objChild.style.fontSize = objChild.oldFontSize;
  4177.     if( typeof(objChild.oldTextDecoration) != "undefined" )
  4178.         objChild.style.textDecoration = objChild.oldTextDecoration;
  4179.     if( typeof(objChild.oldBackgroundColor) != "undefined" )
  4180.         objChild.style.backgroundColor = objChild.oldBackgroundColor;
  4181. }
  4182. // End of the CAgencyFontChange definition
  4183.  
  4184. // Begin of the CAgencyChangeStyle definition
  4185. function CAgencyChangeStyle( element, settings )
  4186. {//this class can be replace by CAgencyChangeStyle,provided the "settings" is standard CSS string.
  4187.     this.ele = element;
  4188.     
  4189.     // to retrieve the original style
  4190.     this.oldstyle = this.ele.style.cssText;
  4191.     
  4192.     // to set the default style
  4193.     this.newStyle = this.oldstyle;
  4194.     
  4195.     if( typeof(settings) == "string" && settings.length > 1 )
  4196.         this.newStyle = this.oldstyle + " " + settings;
  4197. }
  4198.  
  4199. CAgencyChangeStyle.prototype.PrepareEffect = function()
  4200. {
  4201.     CCSSP.ShowObject(this.ele, true );
  4202. }
  4203.  
  4204. CAgencyChangeStyle.prototype.UpdateEffect = function()
  4205. {// to change the style
  4206.     this.ele.style.cssText = this.newStyle;
  4207. }
  4208.  
  4209. CAgencyChangeStyle.prototype.EndEffect = function()
  4210. {// to reinstate the original style
  4211.     this.ele.style.cssText = this.oldStyle;
  4212. }
  4213. // End of the CAgencyChangeStyle definition
  4214.  
  4215. //End the definition of CAgencyXXXX classes
  4216.  
  4217. //Begin to collaborate with other event handler settings 
  4218. CCSSP.RegisterEventHandler( window, "onload", "CEngine.OnPageLoad();BSSCOnLoad();kadovInitTriggersInHead();");
  4219. CCSSP.RegisterEventHandler( document, "onclick", "CEngine.OnPageClick();BSSCOnClick();");
  4220. CCSSP.RegisterEventHandler( document, "onmouseover", "CEngine.OnMouseOver();BSSCOnMouseOver();" );
  4221. CCSSP.RegisterEventHandler( document, "onmouseout", "CEngine.OnMouseOver();BSSCOnMouseOut();" );
  4222. CCSSP.RegisterEventHandler( window, "onunload", "BSSCOnUnload();");
  4223. //End to collaborate with other event handler settings
  4224.  
  4225. /// Section End  - CCSSP DHTM 2 (JavaScript 1.2)
  4226.  
  4227. //// Segment End -- (JavaScript 1.2)
  4228.